mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-01-03 22:47:15 +03:00
342 B
342 B
ls
List directory contents
- List all files, even hidden
ls -a
- Sorting by size
ls -s
- List all files with their rights, groups, owner
ls -ls
- List all files with a prefix/suffix
ls {{prefix}}*
or ls *{{suffix}}
- Sort files by time
-t
for last modified
-U
for date of creation
-r
reverses the list
ls -tr