Skip to content

Instantly share code, notes, and snippets.

@jesusgollonet
Created August 11, 2014 12:02
Show Gist options
  • Save jesusgollonet/3b0df3294662aeb1a585 to your computer and use it in GitHub Desktop.
Save jesusgollonet/3b0df3294662aeb1a585 to your computer and use it in GitHub Desktop.
kill the yeoman server
kill_yo () {
ps | grep 'grunt serve' | grep -v 'grep' | sed 's/^ *//' | cut -d ' ' -f1 | xargs kill -15
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment