Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,19 +1,19 @@
# tail
> Display the last part of a file
> Display the last part of a file.
- show last 'num' lines in file
- Show last 'num' lines in file:
`tail -n {{num}} {{file}}`
- show all file since line 'num'
- Show all file since line 'num':
`tail -n +{{num}} {{file}}`
- show last 'num' bytes in file
- Show last 'num' bytes in file:
`tail -c {{num}} {{file}}`
- keep reading file until ctrl-c
- Keep reading file until ctrl-c:
`tail -f {{file}}`