摘要:
Shell编程中常用的文件描述符有3个: 0:stdin,标准输入,默认指的是键盘输入 1:stdout,标准输出,默认指的是屏幕输出 2:stderr,标准错误输出,默认值得是屏幕输出重定向简单例子命令举例 含义md > file 把 stdout 重定向到 file 文件中cmd >> file 把 stdout 重定向到 file 文件中(追加)cmd 1> fiel 把 stdout 重定向到 file 文件中cmd > file 2>&1 把 stdout 和 stderr 一起重定向到 file 文件中cmd 2> file 把 s 阅读全文