Merge branch 'patch-6' of https://github.com/maggick/cheat into maggick-patch-6

* 'patch-6' of https://github.com/maggick/cheat:
  correction
  minor spell corrections
  Create head
This commit is contained in:
Chris Lane 2013-09-19 19:42:52 -04:00
commit 0d60d6b558
1 changed files with 8 additions and 0 deletions

8
cheatsheets/head Normal file
View File

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