short alias for cat

This commit is contained in:
Morgan Wattiez 2019-06-18 10:57:44 +02:00
parent 94b5877764
commit 440091481c

View File

@ -45,8 +45,9 @@ alias ssla="openssl x509 -alias -noout -in" # Usage : ssla <cert>
alias v=vi alias v=vi
alias tunnel='sshuttle --dns -r "$(whoami)@management.collibra.com" 0/0' alias tunnel='sshuttle --dns -r "$(whoami)@management.collibra.com" 0/0'
alias ls='lsd' alias ls='lsd'
alias pip3='/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/bin/pip'
alias pip='pip3' alias pip='pip3'
alias c='cat'
# Show/hide hidden files in Finder # Show/hide hidden files in Finder
alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder" alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder"
alias hide="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder" alias hide="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"