1
0
mirror of https://github.com/cheat/cheat.git synced 2025-05-31 04:17:06 +02:00

Create head

This commit is contained in:
Matthieu Keller 2013-09-02 16:08:09 +02:00
parent 2a9220bb6d
commit e557c26377

8
cheatsheets/head Normal 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