Skip to content

Instantly share code, notes, and snippets.

@manix84
Created October 3, 2012 09:39
Show Gist options
  • Save manix84/3826084 to your computer and use it in GitHub Desktop.
Save manix84/3826084 to your computer and use it in GitHub Desktop.
alias grok='find . -type f -not -path "*CVS*" -not -path "*svn*" -not -path "*/tmp/*" -print0 | xargs -0 grep '
alias sgrep='find . -type f -not -path "*CVS*" -not -path "*svn*" -not -path "*/tmp/*" -not -path "*/images/*" -print0 | xargs -0 grep '
alias proj='dir /workplace |grep $USER'
alias ll='ls -la'
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias top='top -d 60'
alias svnci='svncommit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment