cheat-fork-echo/cheatsheets/head

9 lines
149 B
Plaintext
Raw Normal View History

2013-09-02 16:08:09 +02:00
# To show the 10 first line of file
head file
# To show the n first line of file
head -l n file
# To show the n first bytes of file
head -b n file