Skip to content

Instantly share code, notes, and snippets.

@mrfyda
Created August 4, 2015 19:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mrfyda/27a99c1c8a1924bf14d1 to your computer and use it in GitHub Desktop.
Save mrfyda/27a99c1c8a1924bf14d1 to your computer and use it in GitHub Desktop.
Show open file descriptors for Java processes
for pid in `pidof java`; do echo "$(< /proc/$pid/cmdline)"; egrep 'files|Limit' /proc/$pid/limits; echo "Currently open files: $(ls -1 /proc/$pid/fd | wc -l)"; echo; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment