1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 01:18:00 +01:00
tldr/pages/common/ls.md

28 lines
458 B
Markdown
Raw Normal View History

2014-01-28 10:27:02 +01:00
# ls
> List directory contents.
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 all files, including hidden files:
2014-01-28 10:27:02 +01:00
`ls -a`
2014-01-28 10:27:02 +01:00
- Long format list (permissions, ownership, size and modification date) of all files:
2014-01-28 10:27:02 +01:00
`ls -la`
2014-01-28 22:58:16 +01:00
2016-01-20 18:59:42 +01:00
- Long format list with size displayed using human readable units (KB, MB, GB):
`ls -lh`
- Long format list sorted by size (descending):
2014-02-21 23:05:52 +01:00
`ls -lS`
- Long format list of all files, sorted by modification date (oldest first):
2016-01-27 17:44:05 +01:00
`ls -ltr`