Skip to content

Instantly share code, notes, and snippets.

@agundy
Created May 17, 2014 08:09
Show Gist options
  • Save agundy/677522663101f70d775b to your computer and use it in GitHub Desktop.
Save agundy/677522663101f70d775b to your computer and use it in GitHub Desktop.
Bash
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
export PATH=$HOME/local/bin:$PATH
. /usr/share/autojump/autojump.sh
alias open=xdg-open
=() {
calc="${@//p/+}"
calc="${calc//x/*}"
bc -l <<<"scale=10;$calc" | cowsay
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment