wget -c Linux 指令中的 -c 是什麼意思?

wget -c Linux 指令中的 -c 是什麼意思?

我正在 Ubuntu 伺服器上安裝 Artifactory,並嘗試新增 JFrog 儲存庫金鑰。命令是:

wget -c -O- "https://bintray.com/user/downloadSubjectPublicKey?username=jfrog" | sudo apt-key add

我收到一條錯誤訊息wget -c: command not found

答案1

wget --help向您展示:

-c,  --continue                  resume getting a partially-downloaded file
     --start-pos=OFFSET          start downloading from zero-based position OFFSET
     --progress=TYPE             select progress gauge type
     --show-progress             display the progress bar in any verbosity mode

您的錯誤訊息(未找到 wget 命令)表示未安裝 wget。運行sudo apt-get install wget安裝它。

答案2

有趣的是你會收到錯誤訊息

wget -c:未找到指令

-c部分不應該在那裡。

通常,如果沒有安裝 wget,則會出現以下錯誤訊息:

wget:找不到指令

因此,由於某種原因,您的 shell 認為您想要執行名為 的命令wget -c

如果您複製並貼上了該命令,請重新鍵入它(不要複製並貼上它)。很可能在wget和之間存在一個不可見的 utf8 字符-c,導致 shell 嘗試尋找名為 的命令wget -c

相關內容