我看到了一些后期脚本
# setting wget options
:> wgetrc
echo "noclobber = off" >> wgetrc
echo "dir_prefix = ." >> wgetrc
echo "dirstruct = off" >> wgetrc
echo "verbose = on" >> wgetrc
echo "progress = dot:default" >> wgetrc
echo "tries = 2" >> wgetrc
在这里做什么:>
?
答案1
清空当前目录中名为“wgetrc”的文件。例如,如果文件不存在,则创建一个空文件“wgetrc”;如果存在,则将其覆盖为空。
相当于以下内容:
cat /dev/null > wgetrc