tldr/pages/common/ls.md

37 lines
763 B
Markdown
Raw Normal View History

2014-01-28 13:27:02 +04:00
# ls
> List directory contents.
> More information: <https://www.gnu.org/software/coreutils/ls>.
2014-01-28 13:27:02 +04:00
- List files one per line:
2014-01-28 13:27:02 +04:00
`ls -1`
2014-01-28 13:27:02 +04:00
- List [a]ll files, including hidden files:
2014-01-28 13:27:02 +04:00
`ls -a`
2014-01-28 13:27:02 +04:00
- List files with a trailing symbol to indicate file type (directory/, symbolic_link@, executable*, ...):
`ls -F`
- List [a]ll files in [l]ong format (permissions, ownership, size, and modification date):
2014-01-28 13:27:02 +04:00
`ls -la`
2014-01-29 01:58:16 +04:00
- List files in [l]ong format with size displayed using [h]uman-readable units (KiB, MiB, GiB):
`ls -lh`
- List files in [l]ong format, sorted by [S]ize (descending) [R]ecursively:
2014-02-22 02:05:52 +04:00
`ls -lSR`
- List files in [l]ong format, sorted by [t]ime the file was modified and in [r]everse order (oldest first):
2016-01-27 19:44:05 +03:00
`ls -ltr`
2021-05-14 03:40:50 +03:00
- Only list [d]irectories:
2021-05-14 03:40:50 +03:00
2021-10-13 09:26:17 +03:00
`ls -d */`