rename pages.hbs to pages.sh

See @vladimyr's message:
https://gitter.im/tldr-pages/tldr?at=60625b22cfd0b814ebac164d
This commit is contained in:
bl-ue
2021-04-01 15:42:26 -04:00
committed by Starbeamrainbowlabs
parent 59308e5928
commit db8da89263
10 changed files with 0 additions and 0 deletions

24
pages.sh/common/tail.md Normal file
View 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}}`