Trivial changes to the head cheatsheet.

This commit is contained in:
Chris Lane 2013-09-19 19:45:28 -04:00
parent 0d60d6b558
commit 0cc76a78a1
1 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,8 @@
# To show the 10 first lines of file
# To show the first 10 lines of file
head file
# To show the n first lines of file
head -n l file
# To show the first N lines of file
head -n N file
# To show the n first bytes of file
head -c b file
# To show the first N bytes of file
head -c N file