1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 19:15:27 +02:00

Improved tail.md

This commit is contained in:
Bruno Durán 2014-03-19 12:49:24 +01:00
parent 84be2a73d1
commit 57d42257d3

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}}`