-2
獲取這是一個問題,從以下三個找了不同的語法旁白:傳遞參數通過捲曲獲取腳本參數傳遞給bash腳本通過捲曲
curl https://sdk.cloud.google.com | bash -s arg1 arg2
curl https://sdk.cloud.google.com | bash /dev/stdin arg1 arg2
bash <(curl https://sdk.cloud.google.com) arg1 arg2
...因爲沒有那些的列出了我試圖安裝在虛擬機上的gcloud
腳本。
我已經看着這些,但沒有找到一個替代第四嘗試:
- passing arguments to an interactive program non interactively
- passing parameters to bash when executing a script fetched by curl
- Execute bash script from URL
如果可能,請幫助改善問題並在投票時留下評論。謝謝! – pulkitsinghal
使用'xargs'將參數傳遞給腳本。 – ceving