Skip to content

Instantly share code, notes, and snippets.

@iAnatoly
Created October 14, 2019 18:54
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 iAnatoly/b066be40119fdc7181c0a1655f36ca57 to your computer and use it in GitHub Desktop.
Save iAnatoly/b066be40119fdc7181c0a1655f36ca57 to your computer and use it in GitHub Desktop.
oneliner to investigateprocess swap usage
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment