head -num
är samma som head -n num
istället för head -n -num
(där num
är vilket nummer som helst)
Exempel:
$ 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
Denna head -1
verkar inte dokumenteras någonstans.
$ 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"
Mansida för head
(på 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)
Svar
Informationssidan och onlinehandboken för GNU head
innehåller denna del:
För kompatibilitet
head
stöder också en föråldrad syntax för alternativ-[NUM][bkm][cqv]
, som bara känns igen om den anges först.
Idén att head -1
är samma som head -n 1
är att strecket inte är ett mi nus-tecken, men en markör för ett kommandoradsalternativ. Det är den vanliga användaren: saker som börjar med bindestreck är alternativ som styr hur man bearbetar, andra saker på kommandoraden är filnamn eller andra faktiska mål att bearbeta. I det här fallet är det inte ett enda teckenalternativ men en förkortning för -n
, men det är fortfarande i princip ett alternativ och inte ett filnamn. I head +1
eller head 1
, +1
eller 1
skulle dock tas som filnamn.
En dubbel streck --
eller --something
har också en tydlig betydelse i sig själv (--
) det stoppar bearbetning av alternativ, och när det följs av något annat markerar det ett GNU-format långt alternativ. Så att ha head --1
för head -n -1
skulle inte ”t matcha anpassningen.
Om jag skulle gissa, antar jag att den pittoreska genvägen för -n i
finns för positiv i
men inte för negativ i
eftersom det tidigare fallet är användbart oftare och lättare att implementera. (Dessutom är standard head
definieras endast för ett positivt värde på rader.)
Kommentarer
- Se även den ursprungliga UNIX-mannen sida: schillix.sourceforge.net/man/man1/head.1.html