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
| # Universal Shell Aliases, should work with both Bash and ZSH. | |
| alias mkdir='mkdir -p' | |
| alias chown='chown -Rv' | |
| alias chmod='chmod -Rv' | |
| alias grep='grep --color=always' | |
| alias diff='colordiff' | |
| alias tar='tar --verbose' | |
| alias tmux='tmux -2' | |
| #alias rsync='rsync --verbose --progress --stats --compress --recursive --times --perms --links exclude "*bak" --exclude "*~*"' | |
| alias psaux='ps aux' |