mirror of
https://github.com/cheat/cheat.git
synced 2024-11-26 07:51:35 +01:00
9 lines
151 B
Plaintext
9 lines
151 B
Plaintext
# 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
|