mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01: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