사용하는 이유
파일의 내용을 출력하기 위해
cat 사용법
cat <file>
cat -n <file> # 라인마다 몇 번째 line 인지 출력
cat <file 1> <file 2> ... <file n>
tail 사용법
tail <file>
tail -n <the number of line for output> <file> # 원하는 라인만큼 출력 (기본 마지막 10줄)
tail <file 1> <file 2> ... <file n>
head 사용법
head <file>
head -n <the number of line for output> <file> # 원하는 라인만큼 출력 (기본 맨처음 10줄)
head <file 1> <file 2> ... <file n>
linux man page
cat - concatenate files and print on the standard output
tail - output the last part of files
head - output the first part of files
(해석)
cat - 파일들을 연결하고 표준 출력으로 출력합니다
tail - 파일들의 마지막을 출력합니다
head - 파일들의 처음을 출력합니다
출처:
'개발 > linux' 카테고리의 다른 글
linux chown chmod (setuid, setgid, sticky bit, mode format) 사용법, 설명, 차이 (0) | 2022.10.21 |
---|---|
linux mkdir 사용법, 설명 (0) | 2022.10.21 |
linux man help info 차이 비교 (0) | 2022.10.21 |
linux cd 사용법, man cd 가 없는 이유 (0) | 2022.10.21 |
linux pwd 현재 작업 디렉터리 출력 (0) | 2022.10.21 |
댓글