mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 11:53:11 +02:00
head: add hbs translation
This commit is contained in:
parent
f75dae45d8
commit
82b2567f9b
1 changed files with 19 additions and 0 deletions
19
pages.hbs/common/head.md
Normal file
19
pages.hbs/common/head.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# head
|
||||||
|
|
||||||
|
> Prikazuje prvi deo datoteka.
|
||||||
|
|
||||||
|
- Prikaži prvih nekoliko linija datoteke:
|
||||||
|
|
||||||
|
`head -n {{broj_linija}} {{naziv_datoteke}}`
|
||||||
|
|
||||||
|
- Prikaži prvih nekoliko bajtova datoteke:
|
||||||
|
|
||||||
|
`head -c {{veličina_u_bajtovima}} {{naziv_datoteke}}`
|
||||||
|
|
||||||
|
- Prikaži sve osim nekoliko poslednjih linija datoteke:
|
||||||
|
|
||||||
|
`head -n -{{broj_linija}} {{naziv_datoteke}}`
|
||||||
|
|
||||||
|
- Prikaži sve osim nekoliko poslednjih bajtova datoteke:
|
||||||
|
|
||||||
|
`head -c -{{veličina_u_bajtovima}} {{naziv_datoteke}}`
|
Loading…
Add table
Reference in a new issue