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を使用してファイルを取得するためのエイリアスを作成したいと思います。
すべてをハードコーディングするのではなく、どうすればこれをインタラクティブに行うことができますか?
以下は期待どおりに機能します。
alias proxyget='read userid?"Userid: "; read passwd?"Password: "; read url?"URL: "; read local?"Local: "; curl -x 1.2.3.4:8080 -U $userid:$passwd $url -o $local;'
参考文献
cURLを使用してHTTPジョブを自動化する
curl-手動
マニュアルページを読む-Bash-SS64.com