1
1
mirror of https://github.com/chubin/cheat.sh.git synced 2024-11-23 10:35:29 +03:00
cheat.sh/tests/results/2
2019-05-09 21:53:34 +02:00

845 B

# Displays everything in the target directory
ls path/to/the/target/directory
 
# Displays everything including hidden files
ls -a
 
# Displays all files, along with the size (with unit suffixes) and timestamp
ls -lh
 
# Display files, sorted by size
ls -S
 
# Display directories only
ls -d */
 
# Display directories only, include hidden
ls -d .*/ */