1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 21:26:44 +02:00
Files
cheat.sh/tests/results/2
T
Igor Chubin 7b043574f7 Update tests
2020-11-22 19:00:56 +00:00

2.2 KiB

cheat:ls
# To display everything in <dir>, excluding hidden files:
ls <dir>
 
# To display everything in <dir>, including hidden files:
ls -a <dir>
 
# To display all files, along with the size (with unit suffixes) and timestamp
ls -lh <dir>
 
# To display files, sorted by size:
ls -S <dir>
 
# To display directories only:
ls -d */ <dir>
 
# To display directories only, include hidden:
ls -d .*/ */ <dir>
 
tldr:ls
# ls
# List directory contents.
 
# List files one per line:
ls -1
 
# List all files, including hidden files:
ls -a
 
# List all files, with trailing `/` added to directory names:
ls -F
 
# Long format list (permissions, ownership, size and modification date) of all files:
ls -la
 
# Long format list with size displayed using human readable units (KB, MB, GB):
ls -lh
 
# Long format list sorted by size (descending):
ls -lS
 
# Long format list of all files, sorted by modification date (oldest first):
ls -ltr