Cheatsheets: minor tweaks

Made minor changes to the ls and rm cheatsheets.
This commit is contained in:
Chris Lane 2013-10-08 19:52:46 -04:00
parent d9bce2f3c4
commit 9870deee6f
2 changed files with 2 additions and 2 deletions

View File

@ -8,4 +8,4 @@ ls -a
ls -lh ls -lh
# Display files, sorted by size # Display files, sorted by size
ls -S ls -S

View File

@ -1,5 +1,5 @@
# Remove files and subdirs # Remove files and subdirs
rm -r path/to/the/target/ rm -rf path/to/the/target/
# Ignore non existent files # Ignore non existent files
rm -f path/to/the/target rm -f path/to/the/target