Add helper aliases for show/hide files. Add helper alias to recursively delete
.DS_Store files.
| ... | ... |
@@ -1,3 +1,9 @@ |
| 1 |
+alias showfiles='defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder' |
|
| 2 |
+alias hidefiles='defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder' |
|
| 3 |
+ |
|
| 4 |
+# Recursively delete .DS_Store files |
|
| 5 |
+alias rm-dsstore="find . -name '*.DS_Store' -type f -delete" |
|
| 6 |
+ |
|
| 1 | 7 |
function savepath() {
|
| 2 | 8 |
pwd > ~/.current_path~ |
| 3 | 9 |
} |