nvm 安裝中的 Curl 參數

nvm 安裝中的 Curl 參數

節點版本管理器 (nvm) 套件 (https://github.com/creationix/nvm)使用以下命令來安裝套件:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

-論證後的附加減號是什麼意思-o

答案1

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

參數-o定義 的輸出curl。透過指定-,curl 會將輸出重定向到 stdout。這就是為什麼您可以透過管道將其傳輸到bash並讓它install.sh在一行中執行 shell 腳本。這樣做的另一個好處是不會將install.sh文件保留在電腦的檔案系統上。

相關內容