mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
9870deee6f
Made minor changes to the ls and rm cheatsheets.
11 lines
255 B
Text
11 lines
255 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
|