mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 00:48:36 +01:00
8 lines
151 B
Text
8 lines
151 B
Text
# To show the first 10 lines of file
|
|
head file
|
|
|
|
# To show the first N lines of file
|
|
head -n N file
|
|
|
|
# To show the first N bytes of file
|
|
head -c N file
|