Linux에서는 head 명령을 사용하여 파일의 처음 몇 줄을 읽을 수 있습니다. 이 명령을 사용하면 지정된 파일의 처음 몇 줄의 내용을 볼 수 있습니다. 구문은 "head [-n K]입니다. file name", "K"는 줄 수를 나타냅니다. , 는 파일의 처음 K줄의 내용을 표시한다는 의미입니다. "-K"를 사용하면 파일의 마지막 K줄을 제외한 나머지 내용을 모두 표시한다는 의미입니다. .
이 튜토리얼의 운영 환경: CentOS 6 시스템, Dell G3 컴퓨터.
Linux에서는 head 명령을 사용하여 파일의 처음 몇 줄을 읽을 수 있습니다.
head 명령을 사용하면 파일 시작 부분의 내용을 볼 수 있습니다. 줄 수를 표시하는 데 사용되는 공통 매개 변수 -n이 있습니다. 기본값은 10줄의 내용이 표시된다는 의미입니다.
파일의 처음 몇 줄을 읽는 기본 구문 형식은 다음과 같습니다.
head [-n K] 文件名
설명:
K
는 줄 수를 표시하는 데 사용됩니다. 파일의 첫 번째 K</ 코드> 줄의 내용 <code>K
表示行数,该选项用来显示文件前 K
行的内容;
如果使用 "-K
-K
"를 매개변수로 사용하면 마지막 K 줄을 제외한다는 의미입니다. 파일의 나머지 내용이 모두 표시됩니다. 옵션 | |
---|---|
-c K | |
-v |
[root@xuexi ~]# head -n 2 /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin
[root@xuexi ~]# head -n -40 /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin
[root@xuexi ~]# head -n 2 -v /etc/passwd ==> /etc/passwd <== root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin
[root@xuexi ~]# head -n 5 /etc/passwd /etc/firewalld/firewalld.conf ==> /etc/passwd <== root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin //两个文件之间会空一行 ==> /etc/firewalld/firewalld.conf <== # firewalld config file # default zone # The default zone used if an empty zone string is used. # Default: public
[root@xuexi ~]# head -n 5 -q /etc/passwd /etc/firewalld/firewalld.conf root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin //此时中间就没有空行 # firewalld config file # default zone # The default zone used if an empty zone string is used. # Default: public
위 내용은 리눅스에서 파일의 처음 몇 줄을 읽는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!