rename pages.hbs to pages.sh
See @vladimyr's message: https://gitter.im/tldr-pages/tldr?at=60625b22cfd0b814ebac164d
This commit is contained in:

committed by
Starbeamrainbowlabs

parent
59308e5928
commit
db8da89263
24
pages.sh/common/tail.md
Normal file
24
pages.sh/common/tail.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# tail
|
||||
|
||||
> Prikazuje krajnji deo datoteke.
|
||||
> Više informacija: <https://www.gnu.org/software/coreutils/tail>.
|
||||
|
||||
- Prikaži poslednjih 'broj' linija u datoteci:
|
||||
|
||||
`tail -n {{broj}} {{datoteka}}`
|
||||
|
||||
- Prikaži celu datoteku od linije 'broj':
|
||||
|
||||
`tail -n +{{broj}} {{datoteka}}`
|
||||
|
||||
- Prikaži poslednjih 'broj' bajtova u datoteci:
|
||||
|
||||
`tail -c {{broj}} {{datoteka}}`
|
||||
|
||||
- Čitaj datoteku sve do `Ctrl + C`:
|
||||
|
||||
`tail -f {{datoteka}}`
|
||||
|
||||
- Čitaj datoteku sve do `Ctrl + C`, čak i kad je datoteka rotirana:
|
||||
|
||||
`tail -F {{datoteka}}`
|
Reference in New Issue
Block a user