标签:amp roman man span 重定向 style lin 错误 name
command>filename 把标准输出重定向到一个新文件中
command>>filename 把标准输出重定向到一个文件中(追加)
command 1>filename 把标准输出重定向到一个新文件中
command>filename 2>&1 把标准输出和标准错误一起重定向到一个文件中
command 2>filename 把标准错误重定向到一个新文件中
command 2>>filename 把标准错误重定向到一个文件中(追加)
command >>filename 2>&1 把标准输出和标准错误一起重定向到一个文件中(追加)
command <filename >filename 2 command命令以filename文件作为标准输入,以filename2文件作为标准输出
command <&m 把文件描述符m作为标准输入
command >&m 把标准输出重定向到文件描述符m中
command <&- 关闭标准输入
标签:amp roman man span 重定向 style lin 错误 name
原文地址:http://www.cnblogs.com/m2492565210/p/7465027.html