From 0cc76a78a1ff3b530dd83e38f94b54765ce98f41 Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Thu, 19 Sep 2013 19:45:28 -0400 Subject: [PATCH] Trivial changes to the head cheatsheet. --- cheatsheets/head | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cheatsheets/head b/cheatsheets/head index 60f7f53..0cb3c78 100644 --- a/cheatsheets/head +++ b/cheatsheets/head @@ -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