shell脚本中的“2< " ">&2" "&>”
Linux标准文件描述符:
文件描述符 | 缩写 | 描述 |
0 | STDIN | 标准输入 |
1 | STDOUT | 标准输出 |
2 | STDERR | 标准错误 |
标准输入和标准输出指的就是键盘和显示器。
当文件描述符(0,1,2)与重定向符号(<)组合之后,就可以重新定向输入,输出,及错误。
- command 2>file1
- 命令执行的错误信息保存到了file1文件中。显示屏只是显示正确的信息。
- command 1>file1 2>file2
- 命令执行后,没有显示。因为正确输出到file1,错误定向到file2
- command &>file1
- 命令执行后,输出和错误都定向到file1中
在shell脚本中,可以定义“错误”输出到STDERR指定的文件.需要在重定向符和文件描述符之间加一个and符(&)
- cat test
- #!/bin/bash
- echo " this is ERROR ">&2
- echo "this is output"
- $
运行脚本
- [root@localhost ~]#./test 2>file1
- thisis output
- [root@localhost ~]# cat file1
- thisis ERROR
可以再脚本中使用exec命令:
- exec1>file1
- exec2>file2
- echo " this is ERROR ">&2
- echo "this is output"
运行如上脚本,则输出都在file1和file2中。
也可以使用exec 0<file1,从文件1中读取输入。
相关推荐
huha 2020-10-16
laisean 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
以梦为马不负韶华 2020-10-20
JohnYork 2020-10-16
Julyth 2020-10-16
applecarelte 2020-10-16
laisean 2020-09-27
flycappuccino 2020-09-27
liguojia 2020-09-27
wangzhaotongalex 2020-09-22
流年浅滩 2020-10-23
liujianhua 2020-10-22
woaimeinuo 2020-10-21
tufeiax 2020-09-03
laisean 2020-09-01
vvu 2020-09-16
libao 2020-09-16
Yyqingmofeige 2020-08-18
zhushixia 2020-08-17