Skip to content

Instantly share code, notes, and snippets.

@aravinthanpnk
Created October 15, 2019 08:22
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 aravinthanpnk/d726724035bab69f10a769e8eedb70d6 to your computer and use it in GitHub Desktop.
Save aravinthanpnk/d726724035bab69f10a769e8eedb70d6 to your computer and use it in GitHub Desktop.
To find Swap Memory Usage in Linux
for file in /proc/*/status ; do awk '/Tgid|VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | grep kB | sort -k 3 -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment