mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
tail: add hbs translation
This commit is contained in:
parent
1a683a8925
commit
f75dae45d8
23
pages.hbs/common/tail.md
Normal file
23
pages.hbs/common/tail.md
Normal file
@ -0,0 +1,23 @@
|
||||
# tail
|
||||
|
||||
> Prikazuje krajnji deo datoteke.
|
||||
|
||||
- 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}}`
|
Loading…
Reference in New Issue
Block a user