본문 바로가기
개발/linux

linux cat tail head 사용법, 설명

by amkorousagi 2022. 10. 21.

linux cat tail head

 

사용하는 이유

파일의 내용을 출력하기 위해

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 - 파일들의 처음을 출력합니다

 

출처:

 

 

cat(1): concatenate files/print on stdout - Linux man page

cat(1) - Linux man page Name cat - concatenate files and print on the standard output Synopsis cat [OPTION]... [FILE]... Description Concatenate FILE(s), or standard input, to standard output. -A, --show-all equivalent to -vET -b, --number-nonblank number

linux.die.net

 

 

tail(1): output last part of files - Linux man page

tail(1) - Linux man page Name tail - output the last part of files Synopsis tail [OPTION]... [FILE]... Description Print the last 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving the file name. With no FI

linux.die.net

 

 

head(1): output first part of files - Linux man page

head(1) - Linux man page Name head - output the first part of files Synopsis head [OPTION]... [FILE]... Description Print the first 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving the file name. With no

linux.die.net

 

댓글