-
-
Save leo424y/128cdaa58ebfbfed6a400c0a13771055 to your computer and use it in GitHub Desktop.
typo対策alias
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
# みんな大好きls周り | |
alias l='ls' | |
alias s='ls' | |
alias ks='ls' | |
# 高度に発展した、キータイプ矯正を目的とするアニメーションプログラムを入れているため使わない | |
# alias sl='ls' | |
# cdもよくミスる | |
alias c='cd' | |
alias cd..='cd ..' | |
alias cd../='cd ..' | |
# Git系。スペースを打ち損ねることが多いので | |
alias gitadd='git add' | |
alias gitst='git st' | |
# その他 | |
alias snv='svn' | |
alias rmv='rvm' | |
alias gpre='grep' | |
alias opne='open' | |
alias les='less' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment