mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-13 16:22:03 +01:00
11 lines
254 B
Text
11 lines
254 B
Text
|
# 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
|