$ls -l > result.txt
> = 1> (파일로 Redirection) ←standard output일 때 '>' or '1>' 사용
ls -l의 결과가 result.txt로 입력된다.
ex) rename2.txt 파일이 없을때
$rm rename2.txt 2> error.log
2> ←standard error
에러의 내용이 error.log로 입력된다.
I/O stream
Standard input → Unix process → Standard output
→ Standard error
Uploaded by Notion2Tistory v1.1.0