博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux 重定向 1>&2 2>&1
阅读量:4040 次
发布时间:2019-05-24

本文共 1013 字,大约阅读时间需要 3 分钟。

在 shell 中,最常使用的 FD (file descriptor) 大概有三个, 分别是:
0: Standard Input (STDIN)
1: Standard Output (STDOUT)
2: Standard Error Output (STDERR)
在标准情况下, 这些FD分别跟如下设备关联:
stdin(0): keyboard 
键盘输入,并返回在前端
stdout(1): monitor 
正确返回值 输出到前端
stderr(2): monitor
错误返回值 输出到前端
举例说明吧:
当前目录只有一个文件 a.txt.
[root@redhat box]#
ls
a.txt
[root@redhat box]#
ls a.txt b.txt         
ls: b.txt: No such file or directory     由于没有b.txt这个文件, 于是返回错误值, 这就是所谓的
2输出
a.txt     而这个就是所谓的
1输出
再接着看:
[root@redhat box]#
ls a.txt b.txt  1>file.out 2>file.err
执行后,没有任何返回值. 原因是, 返回值都重定向到相应的文件中了,而不再前端显示
[root@redhat box]# cat file.out
a.txt
[root@redhat box]# cat file.err

ls: b.txt: No such file or directory

默认
"1>" 通常可以省略成 ">".
即可以把如上命令写成: ls a.txt b.txt  >file.out 2>file.err
有了这些认识才能理解 "
1>&2" 和 "
2>&1".
1>&2  把正确返回值 传递给 2输出通道 ,&2表示2输出通道
如果此处错写成 1>2, 就表示把1输出重定向到文件2中.
2>&1 把错误返回值 传递给1输出通道,,同样&1表示1输出通道.
举个例子.
[root@redhat box]# ls a.txt b.txt 1>file.out
2>&1
[root@redhat box]# cat file.out
ls: b.txt: No such file or directory
a.txt
现在,
正确的输出和错误的输出都定向到了file.out这个文件中, 而不显示在前端.

 

转载地址:http://tipdi.baihongyu.com/

你可能感兴趣的文章
Makefile中的info函数
查看>>
使用mkimage制作uboot脚本
查看>>
全球海底光缆分布图-Submarine Cable Map
查看>>
很有用的图像数据转换工具
查看>>
uboot内存布局
查看>>
uboot移植-内存分布
查看>>
ubuntu下如何把用户的语言环境变量改为中文
查看>>
Ubuntu Server 16.04修改IP、DNS、hosts
查看>>
几个可以替代百度的搜索引擎
查看>>
BT.656标准简介
查看>>
BT.601与BT.656
查看>>
标准BT.656并行数据结构
查看>>
A Brief Introduction to Digital Video
查看>>
数字视频接口
查看>>
my.cnf 自动生成脚本
查看>>
如何通过instant client 来连接数据库以及使用exp/imp?
查看>>
flask +python+vue 监控软件(一)
查看>>
flask +python+vue 监控软件(二)
查看>>
go AES加密解密
查看>>
python AES加密解密,key的长度不受限制
查看>>