1. 标准输入stdin文件描述符为0,标准输出stdout文件描述符为1,标准错误stderr文件描述符为22. /dev/null 空设备,相当于垃圾桶3. 重定向符号:>3. 2>1 与 2>&1 的区别
2>1, 把标准错误stderr重定向到文件1中
2>&1,把标准错误stderr重定向到标准输出stdout4. 举例:
假设有脚本test.sh,内容如下,t是一个不存在的命令,执行脚本进行下面测试。
# cat test.sh
t
date 标准输出重定向到log,错误信息输出到终端上,如下:
# ./test.sh > log
./test.sh: line 1: t: command not found
# cat log
Thu Oct 23 22:53:02 CST 2008
删除log文件,重新执行,这次是把标准输出定向到log,错误信息定向到文件1
# ./test.sh > log 2>1
#
# cat log
Thu Oct 23 22:56:20 CST 2008
# cat 1
./test.sh: line 1: t: command not found
# 把标准输出重定向到log文件,把标准错误重定向到标准输出
# ./test.sh > log 2>&1
#
# cat log
./test.sh: line 1: t: command not found
Thu Oct 23 22:58:54 CST 2008
# 把错误信息重定向到空设备
# ./test.sh 2>/dev/null
Thu Oct 23 23:01:07 CST 2008
#
把标准输出重定向到空设备
# ./test.sh >/dev/null
./test.sh: line 1: t: command not found
把标准输出和标准错误全重定向到空设备
#./test.sh >/dev/null 2>&1
# 把标准输出和标准错误全重定向到空设备
#./test.sh >/dev/null 2>&1迈入Linux内核学习的神圣殿堂Firefox 4在MeeGo上成功安装相关资讯 Linux脚本
- 获取Linux服务器基本信息脚本 (02月17日)
- Linux 批量拷贝数据脚本 (03/05/2015 10:47:12)
- 简单的Linux脚本程序 (11/10/2013 08:45:07)
| - Linux定时任务中用脚本代替可执行 (06/06/2015 06:37:39)
- Linux下的flashback脚本 (05/21/2014 08:25:05)
- Linux下记录所有用户操作的脚本 (07/29/2013 08:33:39)
|
本文评论 查看全部评论 (0)