리다이렉션 기능은 화면에 출력 되는 내용을 파일에 출력을 할 수 있습니다. 파일에 출력을 하면 명령어의 출력 결과가 파일에 저장이 되면서 생성이 됩니다.
사용법
user@user-virtual-machine:~$ echo "hello" > greeting.txt
user@user-virtual-machine:~$ cat greeting.txt
hello
user@user-virtual-machine:~$ echo "hi" > greeting.txt
user@user-virtual-machine:~$ cat greeting.txt
hi
>를 사용하면 파일이 없을 때 생성되면서 내용이 저장되지만 파일이 있을 때는 내용을 덮어쓰게 됩니다.
user@user-virtual-machine:~$ echo "hello" >> greeting.txt
user@user-virtual-machine:~$ cat greeting.txt
hello
user@user-virtual-machine:~$ echo "hi" >> greeting.txt
user@user-virtual-machine:~$ cat greeting.txt
hello
hi
>>를 사용하면 파일이 없을 때 생성되면서 내용이 저장되고 파일이 있을 때는 내용을 추가하게 됩니다.
'IT > Linux' 카테고리의 다른 글
리눅스 표준 입력과 출력을 동시에 리다이렉션 하기 (0) | 2023.03.28 |
---|---|
리눅스 표준 입력의 리다이렉션(redirection) (0) | 2023.03.27 |
파일의 내용을 정렬하기 - 리눅스 sort 명령어 (0) | 2023.03.21 |
파일의 줄 수, 단어 수, 바이트 수 - 리눅스 wc 명령어 (0) | 2023.03.20 |
파일 내용의 시작과 끝 출력 - 리눅스 head, tail 명령어 (0) | 2023.03.20 |
댓글