1
首先,我想下載網頁:http://acm.sgu.ru/problem.php?contest=0&problem=161 我嘗試使用命令:如何使用Wget下載網頁?
wget -o 161.html http://acm.sgu.ru/problem.php?contest=0&problem=161
但它不能正常工作! 任何人都可以幫助我嗎?
首先,我想下載網頁:http://acm.sgu.ru/problem.php?contest=0&problem=161 我嘗試使用命令:如何使用Wget下載網頁?
wget -o 161.html http://acm.sgu.ru/problem.php?contest=0&problem=161
但它不能正常工作! 任何人都可以幫助我嗎?
您正在爲wget
URL中包含有在外殼(&
)特殊含義的字符,所以你必須把它們單引號內逃離他們。
選項-o file
用於記錄所有消息到提供的文件。
如果要將頁面寫入提供的文件,請使用選項-O file
(大寫O
)。
嘗試:
wget -O 161.html 'http://acm.sgu.ru/problem.php?contest=0&problem=161'
哦,你是對的!謝謝!我將該URL寫入文件url.txt中,並使用以下命令:wget -o 161.html -i url.txt。它不會將網頁保存在文件161.html中。該網頁保存在名爲[email protected]=0&problem=161的文件中。 – xunger
@xunger更新了我的答案,第2點。 –