Best hacks in your .bash_profile and .bashrc?
blog.matthewghudson.com
Best hacks in your .bash_profile and .bashrc?
1–5 of 5 posts
Re: Best hacks in your .bash_profile and .bashrc?
#2At the end of .bashrc,
zsh
Re: Best hacks in your .bash_profile and .bashrc?
#3This is great for showing/hiding files on OSX:
alias show='defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder'
alias hide='defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder'Re: Best hacks in your .bash_profile and .bashrc?
#4Can't comment on your blog...
Personally, I prefer to move all the git alias into the .gitconfig https://gist.github.com/943990
Re: Best hacks in your .bash_profile and .bashrc?
#5At the end of .bashrc, zsh
man chsh