1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ls.md

37 lines
796 B
Markdown
Raw Normal View History

2014-01-28 10:27:02 +01:00
# ls
> List directory contents.
2024-12-16 07:45:08 -08:00
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/ls-invocation.html>.
2014-01-28 10:27:02 +01:00
- List files one per line:
2014-01-28 10:27:02 +01:00
`ls -1`
2014-01-28 10:27:02 +01:00
- List [a]ll files, including hidden files:
2014-01-28 10:27:02 +01:00
`ls -a`
2014-01-28 10:27:02 +01: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 10:27:02 +01:00
`ls -la`
2014-01-28 21:58:16 +00: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-21 14:05:52 -08: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 16:44:05 +00: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 */`