>  기사  >  운영 및 유지보수  >  Linux tee 명령에 대한 자세한 설명

Linux tee 명령에 대한 자세한 설명

藏色散人
藏色散人원래의
2023-03-13 09:16:532737검색

Linux tee 명령의 기능은 표준 입력에서 읽은 다음 표준 출력 및 파일에 쓰는 것입니다. 사용 구문은 "tee [OPTION]... [FILE]..."입니다. 여기서 매개변수는 "-a - -append" "는 파일에 추가한다는 의미이고, "-i --ignore-interrupts" 매개변수는 인터럽트 신호 무시를 의미하며, "-p" 매개변수는 비파이프라인에 쓰기 오류 진단 등을 의미합니다.

Linux tee 명령에 대한 자세한 설명

이 튜토리얼의 운영 환경: linux5.9.8 시스템, Dell G3 컴퓨터.

linux 명령: tee 자세한 설명

tee의 기능은 표준 입력에서 읽은 다음 표준 출력 및 파일에 쓰는 것입니다.

사용법: tee [옵션]... [파일]...

-a, --append                                                       | 파이프 오류                   . 버전 정보

MODE:

warn Write 오류 발생 시 진단

warn-nopipe 비파이프라인에 쓸 때 오류 발생 시 진단

exit 비파이프라인에 쓸 때 오류 발생 시 종료

exit-nopipe 다음 경우 종료 비파이프라인에 쓸 때 오류가 발생합니다. 지정되지 않은 경우 - 출력 오류, tee는 파이프에 쓸 때 오류가 발생하면 즉시 종료되고 비파이프라인에 쓸 때는 진단됩니다.

사용 예:

기본 기능 및 추가 기능:

[root@server dir]# echo 'This is a sentence.' | tee output
This is a sentence.

[root@server dir]# cat output
This is a sentence.

[root@server dir]# echo 'This is another sentence.' | tee -a output
This is another sentence.

[root@server dir]# cat output
This is a sentence.
This is another sentence.

[root@server dir]# echo 'This is a unique sentence.' | tee output
This is a unique sentence.

[root@server dir]# cat output
This is a unique sentence.
두 파일을 동시에 쓰기:

[root@server dir]# tee a b
they have the same content
they have the same content
^C
[root@server dir]# cat a
they have the same content
[root@server dir]# cat b
they have the same content
관련 추천: "Linux 비디오 튜토리얼

"

위 내용은 Linux tee 명령에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.