cheat/cheatsheets/head
Matthieu Keller 0501f8cbfe correction
2013-09-15 17:34:15 +02:00

8 lines
151 B
Text

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