cat
2021. 1. 4. 19:09ㆍOS/Linux
728x90
cat file1 | 파일 내용 출력 |
cat file1 file2 file3 | 파일 내용 연속 출력 |
cat -n file1 file2 file3 | 행번호도 같이 출력 |
cat > file1 | 내용 입력 후 ctrl + d를 눌러 저장(기존 내용 지우고 저장) |
cat >> file1 | 기존 파일 내용 뒤에 연속해 기록 |
ls -al | cat > file2 또는 ls -al > file2 |
|(파이프 기호) 이용해 파일 만듬 |
cat file1 file2 > file3 | 여러 파일 연결해 하나의 파일로 만듬 |
cat file1 > file4 | 하나의 파일 전달해 파일 복사 효과 |
728x90