wget 未记录的 -Y 选项是什么?

wget 未记录的 -Y 选项是什么?

wget -Y off ...(bunch of stuff)...我注意到一个我以前从未遇到过的脚本。

在手册页中查找wget --help并没有找到任何内容。

但它确实作为一种选择而存在;将其与不存在的选项进行对比-Z

# wget -Y
wget: option requires an argument -- 'Y'
Usage: wget [OPTION]... [URL]...

Try `wget --help' for more options.
# wget -Z
wget: invalid option -- 'Z'
Usage: wget [OPTION]... [URL]...

Try `wget --help' for more options.
# wget --help | grep -- -Y
# 

这个未记录的选项是什么?

答案1

一些挖掘发现了相关的提交:

显然 -Y 是一个古老的开关,仅为向后兼容而保留,它允许关闭(或打开?)代理的使用。

现代的替代品-Y off似乎是--no-proxy在当前手册中记录为:

       --no-proxy
           Don't use proxies, even if the appropriate *_proxy environment variable is defined.

相关内容