Create head

This commit is contained in:
Matthieu Keller 2013-09-02 16:08:09 +02:00
parent 2a9220bb6d
commit e557c26377
1 changed files with 8 additions and 0 deletions

8
cheatsheets/head Normal file
View File

@ -0,0 +1,8 @@
# 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