Skip to content

Instantly share code, notes, and snippets.

@rkaneko
Last active December 22, 2015 00:48
Show Gist options
  • Save rkaneko/6391377 to your computer and use it in GitHub Desktop.
Save rkaneko/6391377 to your computer and use it in GitHub Desktop.
My alias sample .
alias la='ls -a'
alias ll='ls -l'
alias up='cd ..'
alias upp='cd ../../'
alias uppp='cd ../../../'
alias v='vim'
alias vi='vim'
# original command rgrep see: http://d.hatena.ne.jp/shunsuk/20120629/1340925330
alias rgrep='find . -name "*.git*" -prune -o -type f -print0 | xargs -0 grep'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment