Skip to content

Instantly share code, notes, and snippets.

@ipereziriarte
Created January 8, 2019 08:23
Show Gist options
  • Save ipereziriarte/d588d5d0de2a8bea515b37f337a9be92 to your computer and use it in GitHub Desktop.
Save ipereziriarte/d588d5d0de2a8bea515b37f337a9be92 to your computer and use it in GitHub Desktop.
Useful gradle related scripts
#!/bin/bash
kill -9 $(ps ax | grep gradle | fgrep -v grep | awk '{ print $1 }')
#!/bin/bash
(ps aux | grep -v -e 'grep ' | grep java | tr -s " " | cut -d " " -f 2 | xargs kill -9 ) || true
#!/bin/bash
./gradlew --stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment