mirror of https://github.com/CrimsonTome/tldr.git
20 lines
286 B
Markdown
20 lines
286 B
Markdown
# 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}}`
|