将所有输出重定向到文件

时间:2016-06-30 08:28:27

标签: linux shell redirect scripting

当我跑步时

curl -I --silent http://ip_address:8000/xxxx -o myfile

curl -I --silent http://ip_address:8000/xxxx> myfile 2>& 1

wget --spider http://ip_address:8000/xxxx> myfile 2>& 1

我看到以下输出(文件/文件夹xxxx不存在):

ip_address - - [30 / Jun / 2016 07:08:29]代码404,消息文件未找到

ip_address - - [30 / Jun / 2016 07:08:29]“HEAD / aaas HTTP / 1.1”404 -

有没有办法将此输出重定向到myFile?

- 我希望将所有输​​出重定向到myFile

1 个答案:

答案 0 :(得分:1)

curl -I --silent http://ip_address:8000/xxxx > myfile.txt