I tried head +10 and it didn\'t work.
Did you try the man page for head?
head -n 10 filename
Head is a fine tool, but you might also try:
sed 10q path
For code golf fanatics, sed is always better than head :)