1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/common/tail.md
2014-02-22 16:49:40 -05:00

15 lines
218 B
Markdown

# tail
> Display the last part of a file
- show last 'num' lines in file
`tail -n {{num}} {{file}}`
- show last 'num' bytes in file
`tail -c {{num}} {{file}}`
- keep reading file until ctrl-c
`tail -f {{file}}`