mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 01:26:03 +02:00
tail: add example using -s parameter. (#4180)
This commit is contained in:
parent
7c4aab2566
commit
94cb11e58d
1 changed files with 4 additions and 0 deletions
|
@ -21,3 +21,7 @@
|
||||||
- Keep reading file until `Ctrl + C`, even if the file is rotated:
|
- Keep reading file until `Ctrl + C`, even if the file is rotated:
|
||||||
|
|
||||||
`tail -F {{file}}`
|
`tail -F {{file}}`
|
||||||
|
|
||||||
|
- Show last 'num' lines in 'file' and refresh every 'n' seconds:
|
||||||
|
|
||||||
|
`tail -n {{num}} -s {{n}} -f {{file}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue