diff --git a/cheatsheets/head b/cheatsheets/head new file mode 100644 index 0000000..60f7f53 --- /dev/null +++ b/cheatsheets/head @@ -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