Skip to content

Instantly share code, notes, and snippets.

@hannesstruss
Created July 5, 2012 13:13
Show Gist options
  • Save hannesstruss/3053584 to your computer and use it in GitHub Desktop.
Save hannesstruss/3053584 to your computer and use it in GitHub Desktop.
(gidsy)hannes@tpHannes:~/code/Gidsy$ grep alias ~/.bashrc
# ~/.bash_aliases, instead of adding them here directly.
#if [ -f ~/.bash_aliases ]; then
# . ~/.bash_aliases
# enable color support of ls and also add handy aliases
alias ls='ls --color=auto'
#alias dir='ls --color=auto --format=vertical'
#alias vdir='ls --color=auto --format=long'
# some more ls aliases
alias ll='ls -lh'
alias l='ls -lhA'
alias treel='tree -C | less -R'
alias g='git'
alias gst='git status'
# project aliases
alias wog='workon gidsy'
alias kill_celery="ps aux | grep celeryd | grep -v grep | awk '{print $2}' | xargs kill -9"
alias apple_f_keys='echo 2 | sudo tee /sys/module/hid_apple/parameters/fnmode'
alias subl='~/opt/Sublime_Text_2/sublime_text'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment