重定向

>&>>&>><

重定向.

scriptname >filename 重定向脚本的输出到文件中.覆盖文件原有内容.

command &>filename 重定向 stdout 和 stderr 到文件中

command >&2 重定向 command 的 stdout 到 stderr

scriptname >>filename 重定向脚本的输出到文件中.添加到文件尾端,如果没有文件,

则创建这个文件.

进程替换,具体见"进程替换部分",跟命令替换极其类似.

(command)>

<(command)


你可能感兴趣的:(重定向)