This file contains 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
# Aliases | |
alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app' | |
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app' | |
alias mkdir="mkdir -p" | |
alias reloadbash='source ~/custom-alias.sh' | |
alias editbash='vi ~/custom-alias.sh' | |
alias psg="ps aux | grep -v grep | grep -i -e VSZ -e" | |
alias ls='ls -h' | |
alias ll='ls -l' | |
alias la='ls -A' |