Last active
December 24, 2015 08:59
-
-
Save mcauser/6774694 to your computer and use it in GitHub Desktop.
.bash_profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # remove all .DS_Store files in the current directory and its subdirectories | |
| alias rmds='find . -name .DS_Store -type f -print -delete' | |
| # show hidden files | |
| alias showhiddenfiles='defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder' | |
| # hide hidden files | |
| alias hidehiddenfiles='defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder' | |
| # apply changes by running | |
| # source ~/.bash_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment