我是Unix新手。以下是我执行的命令。
$ time ls | wget exampledomain.com > output.txt
我希望该命令输出将信息检索到output.txt所花费的时间。这个命令我创建了output.txt,但它只是一个空白文档。
谢谢
答案 0 :(得分:0)
wget
输出到stderr。使用:
wget exampledomain.com > out 2>&1
# or
wget exampledomain.com 2>out
# or
wget exampledomain.com --output-file=log
# or, to redirect the output both to file and stdout
wget exampledomain.com 2>&1 | tee log