Skip to content

Instantly share code, notes, and snippets.

@RichardPovinelli
Created November 5, 2012 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save RichardPovinelli/4018559 to your computer and use it in GitHub Desktop.
Save RichardPovinelli/4018559 to your computer and use it in GitHub Desktop.
.bash_aliases
#!/bin/sh
# .bash_aliases
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
alias la='ls -alh'
alias lal='ls --color -alh | less -r'
alias h='history'
#strips off current comment from history so it doesn't show up
alias hg='history | head -$((`history | wc -l` - 1)) | grep -i '
#don't add same commands, h, and, exit to history list
export HISTIGNORE="&:h:exit"
export HISTCONTROL=ignoreboth
export HISTSIZE=2000
shopt -s cmdhist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment