Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先,我要下载网页:http ://acm.sgu.ru/problem.php?contest=0&problem=161 我尝试使用命令:</p>
wget -o 161.html http://acm.sgu.ru/problem.php?contest=0&problem=161
但它不起作用!有人帮我吗?
您提供的 URLwget包含在 shell ( ) 中具有特殊含义的字符&,因此您必须通过将它们放在单引号内来转义它们。
wget
&
选项-o file用于将所有消息记录到提供的文件中。
-o file
如果您希望将页面写入提供的文件使用选项-O file(大写O)。
-O file
O
尝试:
wget -O 161.html 'http://acm.sgu.ru/problem.php?contest=0&problem=161'