2016-01-29 45 views

回答

1

這裏是將文件下載到特定位置的例子:

wget http://locationforfilebeinghosted.com/file -P /Some/Location 

隨着wget的,沒有覆蓋文件的方式。您可以使用-N這將檢查時間戳,但是當您下載時不會覆蓋,除非網站上託管的文件的實際時間戳較新。

所以,你可以:

#!/bin/bash 
wget http://locationforfilebeinghosted.com/file -P ${someLocation} 
mv -f ${someLocation} ${newLocation] 

應該覆蓋。

0

您可以使用wget像已經提到或捲曲

$(curl -s http://linktofile) > filename 

的-s是silent選項。

相關問題