Skip to content

Instantly share code, notes, and snippets.

@0xAB41
Last active December 21, 2015 06:09
Show Gist options
  • Save 0xAB41/6262213 to your computer and use it in GitHub Desktop.
Save 0xAB41/6262213 to your computer and use it in GitHub Desktop.
Bash Profile file
HISTFILESIZE=2500
HISTIGNORE="ls:ltrh:ls -l:ls -ltrh:pwd:clear:c:ll"
export JAVA_HOME=$(/usr/libexec/java_home)
export DYLD_LIBRARY_PATH="/Developer/NVIDIA/CUDA-5.5/lib:$DYLD_LIBRARY_PATH"
export PATH="/usr/local/bin:$PATH"
export PATH="$PATH:/usr/local/smlnj/bin"
export PATH="/usr/local/mysql/bin:$PATH"
export PATH="/Developer/NVIDIA/CUDA-5.5/bin:$PATH"
export PATH="/usr/local/sbin:$PATH:$ANT_HOME/bin"
alias stopredis="sudo launchctl stop io.redis.redis-server"
alias startredis="sudo launchctl start io.redis.redis-server"
alias c="clear"
alias grep="grep --color=auto"
alias bc="bc -l"
alias ll="ls -l"
alias lla="ls -lia"
alias llc="ls -laG"
alias ltrh="ls -ltrh"
alias rm="rm -i"
alias cpwd='pwd|tr -d "\n"|pbcopy'
alias psgrep='ps -aef | grep '
alias cd..='cd ..'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment