Skip to content

ls: add Czech translation #16860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions pages.cs/common/ls.md
Original file line number Diff line number Diff line change
@@ -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]}} */`