1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 15:35:25 +02:00

Merge pull request #167 from brunoduran/master

Improved tail.md
This commit is contained in:
Romain Prieto 2014-03-23 09:21:29 +11:00
commit 077a4e5a89

View file

@ -6,6 +6,10 @@
`tail -n {{num}} {{file}}`
- show all file since line 'num'
`tail -n +{{num}} {{file}}`
- show last 'num' bytes in file
`tail -c {{num}} {{file}}`