1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:42:08 +02:00
tldr/pages.sh/common/tail.md

623 B

tail

Prikazuje krajnji deo datoteke. Više informacija: https://www.gnu.org/software/coreutils/manual/html_node/tail-invocation.html.

  • Prikaži poslednjih 'broj' linija u datoteci:

tail {{[-n|--lines]}} {{broj}} {{datoteka}}

  • Prikaži celu datoteku od linije 'broj':

tail {{[-n|--lines]}} +{{broj}} {{datoteka}}

  • Prikaži poslednjih 'broj' bajtova u datoteci:

tail {{[-c|--bytes]}} {{broj}} {{datoteka}}

  • Čitaj datoteku sve do <Ctrl c>:

tail {{[-f|--follow]}} {{datoteka}}

  • Čitaj datoteku sve do <Ctrl c>, čak i kad je datoteka rotirana:

tail {{[-F|--retry --follow]}} {{datoteka}}