diff --git a/cheatsheets/tail b/cheatsheets/tail new file mode 100644 index 0000000..7b9a4dc --- /dev/null +++ b/cheatsheets/tail @@ -0,0 +1,14 @@ +# To show the last 10 lines of file +tail file + +# To show the last N lines of file +tail -n N file + +# To show the last lines of file starting with the Nth +tail -n +N file + +# To show the last N bytes of file +tail -c N file + +# To show the last 10 lines of file and to wait for file to grow +tail -f file