UNIX:使用管道重定向某些命令

时间:2015-07-14 15:30:27

标签: shell unix command

我是Unix新手。以下是我执行的命令。

$ time ls | wget exampledomain.com > output.txt

我希望该命令输出将信息检索到output.txt所花费的时间。这个命令我创建了output.txt,但它只是一个空白文档。

谢谢

1 个答案:

答案 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