# 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>
