1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 20:04:57 +02:00
tldr/common/ls.md
2014-01-29 22:58:24 +01:00

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