Attempting to carve out a sensible chunk of stuff for a dotfiles repo.
Sure hope I didn't miss any super secret crap :-P
This commit is contained in:
26
bash_aliases
Normal file
26
bash_aliases
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
Reference in New Issue
Block a user