You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
487 B

#!/usr/bin/env false
# Add color highlighting
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
# Customized greps
alias hgrep='history 0 | grep'
alias psgrep='ps aux | grep -v grep | grep -i -e VSZ -e'
# Additional helpers
alias la='ls -lah'
alias mkdir='mkdir -pv'
alias path='echo -e ${PATH//:/\\n}'
function dotf { (cd $DOTFILES && "$@"); }
function touch { mkdir $(dirname "$1") && command touch "$1" }