head [-n] filename...where the default for n is 10.
head copies the first n lines of each file to the standard output. If filename... is more than one file,
===>filename<===is displayed before each file:
prompt> head file1 file2
==> file1 <==
this is file1
==> file2 <==
this is file2