Skip to content

Instantly share code, notes, and snippets.

@Shaked
Created December 11, 2015 10:45
Show Gist options
  • Select an option

  • Save Shaked/002cf6b69a7cc345f43a to your computer and use it in GitHub Desktop.

Select an option

Save Shaked/002cf6b69a7cc345f43a to your computer and use it in GitHub Desktop.
// Look for a certain process
def p = "ps -e".execute() | "grep java".execute() | "grep -v grep".execute()
p.waitFor()
// Show PID
println p.text.trim().split(" ")[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment