mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
ls: add Czech translation (#16860)
This commit is contained in:
@@ -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]}} */`
|
||||
Reference in New Issue
Block a user