mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
2ebc8c9fac
Display directories only
18 lines
349 B
Plaintext
18 lines
349 B
Plaintext
# 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 .*/ */
|