mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 08:58:28 +01:00
8 lines
151 B
Text
8 lines
151 B
Text
# To show the 10 first lines of file
|
|
head file
|
|
|
|
# To show the n first lines of file
|
|
head -l n file
|
|
|
|
# To show the n first bytes of file
|
|
head -b n file
|