wget 是 Linux 上幾個很長用來下載檔案的工具,使用方法很簡單:
wget http://my.url.com/file.zip
當下載到一半斷線,wget 參數 -c 讓檔案續傳:
wget -c http://my.url.com/file.zip
如果下載的檔案很大,想留先頻寬給其他程式使用,則加上 –limit-rate 參數:
wget --limit-rate=400k http://my.url.com/file.zip
下載檔總是需要等待,如果想先去做其他事情,用 -b 參數讓 wget 在背景下載檔案:
wget -b http://my.url.com/file.zip