1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 23:37:57 +01:00
tldr/pages/common/tail.md
2016-01-08 09:38:59 +01:00

286 B

tail

Display the last part of a file.

  • Show last 'num' lines in file:

tail -n {{num}} {{file}}

  • Show all file since line 'num':

tail -n +{{num}} {{file}}

  • Show last 'num' bytes in file:

tail -c {{num}} {{file}}

  • Keep reading file until ctrl-c:

tail -f {{file}}