Last active
December 27, 2017 22:06
-
-
Save ctranstrum/6448d5834eacb54e80462b8d36167cd6 to your computer and use it in GitHub Desktop.
bash startup
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
alias grep='grep -i --color' | |
alias egrep='egrep -i --color' | |
alias fgrep='fgrep -i --color' | |
alias lsl='ls -l' | |
alias lsa='ls -al' | |
alias dev42='ssh -l device42 -p 404 10.31.12.42' | |
alias cssh='ssh -l ec2-user -i ~/.ssh/corp.pem' | |
alias dssh='ssh -l ec2-user -i ~/.ssh/dev.pem' | |
alias mssh='ssh -l ec2-user -i ~/.ssh/mgmt.pem' | |
alias pssh='ssh -l ec2-user -i ~/.ssh/prod.pem' | |
alias sssh='ssh -l ec2-user -i ~/.ssh/stage.pem' |
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
export CLICOLOR=1 | |
export PATH=$PATH:~/bin | |
export EDITOR=vi | |
export HISTCONTROL=ignoreboth |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment