Linux 텍스트 보기 명령 및 옵션 상세 설명(cat,head,tail)

Liux 시스템 내 장 된 명령 은 다음 과 같은 두 가지 방식 으로'cat-help'또는'man cat'를 조회 할 수 있 습 니 다.
cat 명령 의 일반적인 옵션 과 공식 설명 은 다음 과 같 습 니 다.
cat file_name 파일 의 모든 내용 표시
cat -b file_name 파일 이 빈 줄 이 아 닌 내용 보이 기
cat -E file_name 파일 줄 끝 에$를 표시 합 니 다.파이프 기능 에 자주 사 용 됩 니 다.
cat -n file_name 내용 과 줄 번호 보이 기

Usage: cat [OPTION]... [FILE]...
Concatenate FILE(s) to standard output.

With no FILE, or when FILE is -, read standard input.

 -A, --show-all      equivalent to -vET
 -b, --number-nonblank  number nonempty output lines, overrides -n
 -e            equivalent to -vE
 -E, --show-ends     display $ at end of each line
 -n, --number       number all output lines
 -s, --squeeze-blank   suppress repeated empty output lines
 -t            equivalent to -vT
 -T, --show-tabs     display TAB characters as ^I
 -u            (ignored)
 -v, --show-nonprinting  use ^ and M- notation, except for LFD and TAB
   --help   display this help and exit
   --version output version information and exit

Examples:
 cat f - g Output f's contents, then standard input, then g's contents.
 cat    Copy standard input to standard output.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Full documentation at: http://www.gnu.org/software/coreutils/cat
head 명령 및 옵션 은 다음 과 같 습 니 다.
head -c10 file_name 시작 10 바이트 보이 기
head -c-10 file_name 끝 10 바이트 이외 의 내용 표시
head -n10 file_처음 10 줄 보이 기
head -n-10 file_name 끝 10 줄 을 제외 한 내용 보이 기

Usage: head [OPTION]... [FILE]...
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 FILE, or when FILE is -, read standard input.

Mandatory arguments to long options are mandatory for short options too.
 -c, --bytes=[-]NUM    print the first NUM bytes of each file;
               with the leading '-', print all but the last
               NUM bytes of each file
 -n, --lines=[-]NUM    print the first NUM lines instead of the first 10;
               with the leading '-', print all but the last
               NUM lines of each file
 -q, --quiet, --silent  never print headers giving file names
 -v, --verbose      always print headers giving file names
 -z, --zero-terminated  line delimiter is NUL, not newline
   --help   display this help and exit
   --version output version information and exit

NUM may have a multiplier suffix:
b 512, kB 1000, K 1024, MB 1000*1000, M 1024*1024,
GB 1000*1000*1000, G 1024*1024*1024, and so on for T, P, E, Z, Y.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Full documentation at: http://www.gnu.org/software/coreutils/head
tail 명령 및 옵션 은 다음 과 같 습 니 다.
tail -c10 file_name 끝 에 있 는 10 개의 바이트 보이 기
tail -c-10 file_name 시작 10 바이트 이외 의 내용 표시
tail -n10 file_name 끝 10 줄 보이 기
tail -n-10 file_name 시작 10 줄 을 제외 한 내용 표시

Usage: tail [OPTION]... [FILE]...
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 FILE, or when FILE is -, read standard input.

Mandatory arguments to long options are mandatory for short options too.
 -c, --bytes=[+]NUM    output the last NUM bytes; or use -c +NUM to
               output starting with byte NUM of each file
 -f, --follow[={name|descriptor}]
              output appended data as the file grows;
               an absent option argument means 'descriptor'
 -F            same as --follow=name --retry
 -n, --lines=[+]NUM    output the last NUM lines, instead of the last 10;
               or use -n +NUM to output starting with line NUM
   --max-unchanged-stats=N
              with --follow=name, reopen a FILE which has not
               changed size after N (default 5) iterations
               to see if it has been unlinked or renamed
               (this is the usual case of rotated log files);
               with inotify, this option is rarely useful
   --pid=PID      with -f, terminate after process ID, PID dies
 -q, --quiet, --silent  never output headers giving file names
   --retry       keep trying to open a file if it is inaccessible
 -s, --sleep-interval=N  with -f, sleep for approximately N seconds
               (default 1.0) between iterations;
               with inotify and --pid=P, check process P at
               least once every N seconds
 -v, --verbose      always output headers giving file names
 -z, --zero-terminated  line delimiter is NUL, not newline
   --help   display this help and exit
   --version output version information and exit

NUM may have a multiplier suffix:
b 512, kB 1000, K 1024, MB 1000*1000, M 1024*1024,
GB 1000*1000*1000, G 1024*1024*1024, and so on for T, P, E, Z, Y.

With --follow (-f), tail defaults to following the file descriptor, which
means that even if a tail'ed file is renamed, tail will continue to track
its end. This default behavior is not desirable when you really want to
track the actual name of the file, not the file descriptor (e.g., log
rotation). Use --follow=name in that case. That causes tail to track the
named file in a way that accommodates renaming, removal and creation.

GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Full documentation at: http://www.gnu.org/software/coreutils/tail
파 이 프 를 조합 하여 사용 하 는 것 이 더욱 좋다.
그 밖 에 이 세 가지 명령 은 파이프 기능 과 자주 조합 되 어 파일 내용 의 조작 에 사용 된다.예 를 들 어:
data.txt 의 데이터 정렬:cat data.txt|sort
data.txt 의 내용 일치:cat data.txt|grep'a'
출력 data.txt 의 비 빈 줄 수:cat-b data.txt|wc-l
총결산
리 눅 스 텍스트 보기 명령 과 옵션 에 대한 자세 한 설명(cat,head,tail)에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 리 눅 스 텍스트 보기 명령 과 옵션 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 을 바 랍 니 다!

좋은 웹페이지 즐겨찾기