$ curl cheat.sh/
 cheat:head 
# To show the first 10 lines of <file>:
head <file>

# To show the first <number> lines of <file>:
head -n <number> <file>

# To show the first <number> bytes of <file>:
head -c <number> <file>

 tldr:head 
# head
# Output the first part of files.
# More information: <https://www.gnu.org/software/coreutils/head>.

# Output the first few lines of a file:
head -n count path/to/file

$
Follow @igor_chubin cheat.sh