我在Mac OS X上,無法弄清楚如何通過命令行從URL下載文件。這是從一個靜態頁面,所以我想複製下載鏈接,然後使用curl
會做的伎倆,但事實並非如此。如何使用curl下載文件
我引用了this StackOverflow question但沒有奏效。我也引用this article哪些也沒有工作。
我已經試過:
curl -o https://github.com/jdfwarrior/Workflows.git
curl: no URL specified!
curl: try 'curl --help' or 'curl --manual' for more information
。
wget -r -np -l 1 -A zip https://github.com/jdfwarrior/Workflows.git
zsh: command not found: wget
如何通過命令行下載文件?
的'-o'選項意味着捲曲輸出寫入到,而不是標準輸出。 –
jfly
你是否使用過github URL? – DShah
'zsh:command not found:wget'表示沒有安裝wget軟件包。所以要使用wget,你必須首先安裝wget **。 @Alex Cory –