我想這個bash腳本到:
- 讀取和文件的內容分配給
URLS
- 提示用戶輸入一個路徑來下載內容,將其分配給
PATH
- 通過URL遍歷
- 使用wget將內容下載到PATH。
這裏是我到目前爲止有:
#!/bin/bash
URLS=$(<urls.txt)
read -e -p "Please enter the path of the directory you'd like to save your files to: " PATH
for link in $URLS
do
wget --background --tries=45 $URLS --directory-prefix $PATH
done
exit 0
我的直覺是,我沒有使用正確$PATH
與wget
,因爲該腳本將正常運行,如果我註釋掉--directory-prefix $PATH
。
在此先感謝您的幫助。
它沒有註釋掉'--directory-prefix $ PATH',它有所作爲(用於'wget:command not found'的目的),但註釋掉'read PATH'。 –