Wget recognizes some part of my URL address as a syntax error(Wget 将我的 URL 地址的某些部分识别为语法错误)
问题描述
我对 wget
很陌生,我在 Google 上进行了研究,但没有发现任何线索.
I am quite new with wget
and I have done my research on Google but I found no clue.
我需要保存一个网页的 HTML 文件:
I need to save a single HTML file of a webpage:
wget yahoo.com -O test.html
它有效,但是,当我尝试更具体时:
and it works, but, when I try to be more specific:
wget http://search.yahoo.com/404handler?src=search&p=food+delicious -O test.html
问题来了,wget
将 &p=food+delicious
识别为语法,它说:'p' is not Recognized as an internal或外部命令
here comes the problem, wget
recognizes &p=food+delicious
as a syntax, it says: 'p' is not recognized as an internal or external command
我该如何解决这个问题?非常感谢您的建议.
How can I solve this problem? I really appreciate your suggestions.
推荐答案
&
在shell中有特殊含义.使用 对其进行转义或将 url 放在引号中以避免此问题.
The &
has a special meaning in the shell. Escape it with or put the url in quotes to avoid this problem.
wget http://search.yahoo.com/404handler?src=search&p=food+delicious -O test.html
或
wget "http://search.yahoo.com/404handler?src=search&p=food+delicious" -O test.html
在许多 Unix shell 中,在命令后放置 &
会导致它成为 在后台执行.
In many Unix shells, putting an &
after a command causes it to be executed in the background.
这篇关于Wget 将我的 URL 地址的某些部分识别为语法错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Wget 将我的 URL 地址的某些部分识别为语法错误
基础教程推荐
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 动态更新多个选择框 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01