Skip to content

Instantly share code, notes, and snippets.

@kcsinclair
Created October 26, 2023 02:24
Show Gist options
  • Save kcsinclair/c46313a396891b967bb1431dfcfaaeaa to your computer and use it in GitHub Desktop.
Save kcsinclair/c46313a396891b967bb1431dfcfaaeaa to your computer and use it in GitHub Desktop.
Check Swap Memory which processes are using swap
# simple effective works.
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment