1.> 将目标文件清空后输出Example$ set -o noclobber # 防止覆盖文件$ date > whofilewhofile: file already exists$ date >| whofile$ cat whofileThu Feb 1 13:38:36 EST 1998$ set +o noclobber # clear noclobber$ date > whofile$ cat whofileThu Feb 1 14:22:17 EST 19982.>> 追加输出到目标文件Example$ ls >> lsfile如果lsfile不存在,则会创建新的3.重定向错误输出$ cat nonexistantfile 2> problem$ cat problemfile1: Permission denied4.重定向标准输出和错误输出$ cmd.ksh > out 2> err # 标准输出到out,错误输出到err$ cmd.ksh > combo 2>&1 # 标注输出和错误输出都到combo5.重定向输入$ mail john6.消去输出$ shell_command > /dev/null 09-04 01:57