"head -1"이 "head -n -1"과 같지 않고 "head -n 1"과 같은 이유는 무엇입니까?

"head -1"이 "head -n -1"과 같지 않고 "head -n 1"과 같은 이유는 무엇입니까?

head -numhead -n num대신에 head -n -num( num어떤 숫자가 어디에 있습니까)

예:

$ echo -e 'a\nb\nc\nd'|head -1
a

$ echo -e 'a\nb\nc\nd'|head -n 1
a

$ echo -e 'a\nb\nc\nd'|head -n -1
a
b
c

이것은 head -1어디에도 문서화되어 있지 않은 것 같습니다.

$ head --help

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: <https://www.gnu.org/software/coreutils/>
Full documentation at: <https://www.gnu.org/software/coreutils/head>
or available locally via: info '(coreutils) head invocation'

매뉴얼 페이지 head(Fedora 28):

HEAD(1)                          User Commands                         HEAD(1)

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 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.

AUTHOR
       Written by David MacKenzie and Jim Meyering.

REPORTING BUGS
       GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
       Report head translation bugs to <https://translationproject.org/team/>

COPYRIGHT
       Copyright  ©  2017  Free Software Foundation, Inc.  License GPLv3+: GNU
       GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
       This is free software: you are free  to  change  and  redistribute  it.
       There is NO WARRANTY, to the extent permitted by law.

SEE ALSO
       tail(1)

       Full documentation at: <https://www.gnu.org/software/coreutils/head>
       or available locally via: info '(coreutils) head invocation'

GNU coreutils 8.29               December 2017                         HEAD(1)

답변1

정보 페이지 및온라인 매뉴얼GNU의 경우 head다음 부분을 포함합니다.

호환성을 위해 head더 이상 사용되지 않는 옵션 구문도 지원되며 -[NUM][bkm][cqv], 이는 처음 지정된 경우에만 인식됩니다.

head -1같은 생각 head -n 1으로 대시는 빼기 기호가 아니라 명령줄 옵션에 대한 표시라는 것입니다. 이는 일반적인 관례입니다. 대시로 시작하는 것은 처리가 수행되는 방식을 제어하는 ​​옵션이고 명령줄의 나머지 부분은 처리할 파일 이름이나 기타 실제 대상입니다. 이 경우에는 단일 문자 옵션이 아니라 의 약어이지만 -n여전히 기본적으로 파일 이름이 아닌 옵션입니다. 단, head +1or 에서는 or 는 head 1파일명 으로 취급됩니다.+11

이중 대시 --또는 --something또한 고유한 의미를 가지고 있습니다. 자체적으로( --) 옵션 처리를 중지하고, 다른 항목이 뒤에 오면 GNU 스타일의 긴 옵션을 표시합니다. 그래서 head --1for를 갖는 head -n -1것은 관례가 아닙니다.

내가 추측한다면, 양수에 대해서는 이상한 지름길이 있지만 음수에 대해서는 그렇지 않다고 가정할 것입니다. 전자의 경우가 더 일반적이고 구현하기 쉽기 때문입니다. (또한,-n iii기준head양수 값 라인에 대해서만 정의됩니다. )

관련 정보