From fe1904a84ad48d15f5c22c93fc1c374962793927 Mon Sep 17 00:00:00 2001 From: reymalahay Date: Wed, 22 Jun 2016 23:47:35 -0600 Subject: [PATCH] Added more commands to display file properties and directory structure. --- cheat_sheet.org.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cheat_sheet.org.sh b/cheat_sheet.org.sh index 2731ff7..fa6a0c9 100644 --- a/cheat_sheet.org.sh +++ b/cheat_sheet.org.sh @@ -34,6 +34,12 @@ ls -a # Recurse into subdirectories and list those as well: ls -r +# List most recently modified files/ directories +ls -lart + +# Display directory structure as a tree +tree + # Move/rename a file or directory (be careful that you don't move the source over a destination with the same name): mv [source] [destination]