Last active
September 27, 2015 21:38
-
-
Save simeonwillbanks/1335255 to your computer and use it in GitHub Desktop.
#commandline One liners
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ps -ef | grep resque | grep -v grep | awk '{ print $2 }' | xargs kill; echo '* stopped all resque workers.' | |
$ find . -name \*.rb| xargs grep -n "SLASH_PLACEHOLDER" | |
$ git log --author simeon --pretty=oneline | grep -v Merge > ~/git-log.txt | |
% wget --mirror -p --html-extension --convert-links http://www.acm.uiuc.edu/workshops/zsh/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment