mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-13 08:12:01 +01:00
8 lines
149 B
Text
8 lines
149 B
Text
# 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
|