bash 셸: 표준 오류 출력 으로 바 꾸 기

1433 단어
어떻게 표준 오 류 를 표준 출력 으로 다시 지정 합 니까?어떻게 표준 오 류 를 파일 로 출력 합 니까?
Bash 는 I/O 리 셋 도 구 를 제공 합 니 다. 3 개의 부족 한 파일 (표준 출력 흐름) 이 있 습 니 다. stdin - 입력 을 가 져 오 는 데 사 용 됩 니 다. 예 를 들 어 키보드, 파일 리 셋 stdout - 출력 데이터, 화면 stderr - 출력 오류 정보, 화면 에 출력 되 지 않 습 니 다.
I/O 이해 (표준 입 출력 흐름):
문고리
이름.
묘사 하 다.
0
stdin
표준 입력
1
stdout
표준 출력
2
stderr
표준 오류 출력
표준 오 류 를 파일 로 출력 할 지, 표준 출력 을 화면 으로 출력 할 지 설정 합 니 다.
[root@ns_10.2.1.242 test]$ cat1  2> error.log 
[root@ns_10.2.1.242 test]$ cat error.log 
-bash: cat1: command not found
[root@ns_10.2.1.242 test]$ echo 1 2> error.log 
1
[root@ns_10.2.1.242 test]$ cat error.log 
[root@ns_10.2.1.242 test]$ 

표준 오류 출력 과 표준 출력 을 파일 로 다시 지정 합 니 다.
$ command-name &>file
or
$ command > file-name 2>&1

[root@ns_10.2.1.242 test]$ echo 1 &>error.log 
[root@ns_10.2.1.242 test]$ cat error.log 
1
[root@ns_10.2.1.242 test]$ cat1 &>error.log 
[root@ns_10.2.1.242 test]$ cat error.log    
-bash: cat1: command not found

표준 입력 으로 표준 출력 을 다시 지정 합 니 다.
다음 명령 사용:
$ command-name 2>&1

#注意下面两个例子的区别
# 第一个命令无法更改标准错误输出的内容, 第二个命令因为把stderr 重定向到stdin, 所以 cat1 被替换成了 test
[root@ns_10.2.1.242 test]$ cat1 |sed 's/cat1/test/'
-bash: cat1: command not found
[root@ns_10.2.1.242 test]$ cat1 2>&1|sed 's/cat1/test/' 
-bash: test: command not found

좋은 웹페이지 즐겨찾기