mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 19:35:24 +02:00
ls: add Czech translation (#16860)
This commit is contained in:
parent
6ad7015d6e
commit
c9e0902c90
1 changed files with 36 additions and 0 deletions
36
pages.cs/common/ls.md
Normal file
36
pages.cs/common/ls.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# ls
|
||||
|
||||
> Vypsat obsah adresáře.
|
||||
> Více informací: <https://www.gnu.org/software/coreutils/manual/html_node/ls-invocation.html>.
|
||||
|
||||
- Vypsat soubory samostatně na každý řádek:
|
||||
|
||||
`ls -1`
|
||||
|
||||
- Vypsat všechny soubory, včetně skrytých souborů:
|
||||
|
||||
`ls {{[-a|--all]}}`
|
||||
|
||||
- Vypsat všechny soubory s koncovým znakem který značí typ souboru (adresář/, symbolický_link@, spustitelný*, ...):
|
||||
|
||||
`ls {{[-F|--classify]}}`
|
||||
|
||||
- Vypsat všechny soubory s dlouhým formátem (oprávnění, vlastnictví, velikost, a datum změny):
|
||||
|
||||
`ls {{[-la|-l --all]}}`
|
||||
|
||||
- Vypsat všechny soubory s dlouhým formátem s velikostí v lidsky-čitelných jednotkách (KiB, MiB, GiB):
|
||||
|
||||
`ls {{[-lh|-l --human-readable]}}`
|
||||
|
||||
- List files in [l]ong format, sorted by [S]ize (descending) recursively:
|
||||
|
||||
`ls {{[-lSR|-lS --recursive]}}`
|
||||
|
||||
- Vypsat všechny soubory s dlouhým formátem, seřazené podle velikosti (sestupně) rekurzivně:
|
||||
|
||||
`ls {{[-ltr|-lt --reverse]}}`
|
||||
|
||||
- Vypsat pouze adresáře:
|
||||
|
||||
`ls {{[-d|--directory]}} */`
|
Loading…
Add table
Reference in a new issue