Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
\curl -L https://get.rvm.io | bash -s stable
コマンドが で始まるのはなぜ\ですか? 私が見たサイトはこちらです。
\
alias curl='curl --some --default --options'
のエイリアスがcurlあり、それを使用したくない場合は、バックスラッシュを前に置くとエイリアスが無効になり、curl バイナリが直接実行されます。
curl
これは対話型シェルでのみ適用されることに注意してください。エイリアスはスクリプトでは有効にならないため、スクリプトでは不要です。