Skip to content

Instantly share code, notes, and snippets.

@karthiks
Created October 27, 2011 03:24
Show Gist options
  • Save karthiks/1318713 to your computer and use it in GitHub Desktop.
Save karthiks/1318713 to your computer and use it in GitHub Desktop.
Bash Aliases - Bash
alias ff="find . -name $* | grep -v .git"
alias cls='clear; reset'
alias ls='ls -G'
alias lstop='ls -Fhalts | head'
alias lstime='ls -Fhalts'
alias ll='ls -alG'
alias cp='cp -p'
alias findbrokenlinks='find . -type l | (while read FN ; do test -e "$FN" || ls -ld "$FN"; done)'
alias clearlogs='rm -vrf log/*.log'
alias clearcov='rm -vrf coverage coverage.data'
alias reloadaliases='source ~/.bash_aliases'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment