Skip to content

Instantly share code, notes, and snippets.

@zuzzas
Last active August 29, 2015 14:24
Show Gist options
  • Save zuzzas/0f6173f4105bd5b75530 to your computer and use it in GitHub Desktop.
Save zuzzas/0f6173f4105bd5b75530 to your computer and use it in GitHub Desktop.
Easily convert nid to pid (props to http://stackoverflow.com/a/1199127). Just pipe jstack output to this script.
#!/usr/bin/perl -w
while (<>) {
if (/nid=(0x[[:xdigit:]]+)/) {
$lwp = hex($1);
s/nid=/pid=$lwp nid=/;
}
print;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment