Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ant-hill
Last active October 13, 2015 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ant-hill/9ba6ac9cba88ee4f0edf to your computer and use it in GitHub Desktop.
Save ant-hill/9ba6ac9cba88ee4f0edf to your computer and use it in GitHub Desktop.
# https://www.reddit.com/r/linux/comments/2p9igm/how_does_one_investigate_potential_ulimit_issues/cmumf2j
for USER in `ps -ef | egrep -v '^UID' | awk '{ print $1 }' | sort -u`; do echo -n "$USER: "; ps -u $USER -L | wc -l; done | sort -rn -k2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment