Skip to content

Instantly share code, notes, and snippets.

@meotimdihia
Created March 29, 2013 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meotimdihia/5270063 to your computer and use it in GitHub Desktop.
Save meotimdihia/5270063 to your computer and use it in GitHub Desktop.
Grep the process id and kill all the filtered process
kill $(ps ax | grep 'search' | awk '{print $1}')
ps ax | grep 'search' | awk '{print $1}' | xargs svn add
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment