Linux tee 명령의 기능은 표준 입력에서 읽은 다음 표준 출력 및 파일에 쓰는 것입니다. 사용 구문은 "tee [OPTION]... [FILE]..."입니다. 여기서 매개변수는 "-a - -append" "는 파일에 추가한다는 의미이고, "-i --ignore-interrupts" 매개변수는 인터럽트 신호 무시를 의미하며, "-p" 매개변수는 비파이프라인에 쓰기 오류 진단 등을 의미합니다.
이 튜토리얼의 운영 환경: 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!