cheat/cheatsheets/head
2013-09-02 16:09:38 +02:00

9 lines
151 B
Plaintext

# To show the 10 first lines of file
head file
# To show the n first lines of file
head -l n file
# To show the n first bytes of file
head -b n file