a8cd5a2fe9
Sure hope I didn't miss any super secret crap :-P
27 lines
603 B
Bash
27 lines
603 B
Bash
alias .bp="source $HOME/.bash_profile"
|
|
alias .sa="source $HOME/.ssh/agent.out"
|
|
alias be='bundle exec'
|
|
alias h='cat /etc/hosts'
|
|
alias hn='hostname -f'
|
|
alias i='ip addr'
|
|
alias k1='kill -9 %1'
|
|
alias la='l -a'
|
|
alias ll='l -l'
|
|
alias lla='l -la'
|
|
alias p=ipython
|
|
alias psg='pgrep -fl'
|
|
alias s="cat $HOME/.ssh/config | grep '^Host ' | sed \"s/Host //\" | sort | uniq"
|
|
alias sS='TERM=xterm screen -Rd -S '
|
|
alias scr='TERM=xterm screen -Rd'
|
|
alias sl="screen -ls"
|
|
|
|
if [[ "$(uname)" -eq "Linux" ]]
|
|
then
|
|
alias l='ls -F --color=auto'
|
|
else
|
|
# for darwin in particular
|
|
alias l='ls -GF'
|
|
fi
|
|
|
|
# vim:filetype=sh
|