Skip to content

Instantly share code, notes, and snippets.

@gxovano
gxovano / list_swap_space.sh
Created April 28, 2021 13:11
List used swap by process name
#!/bin/bash
pgrep $1 | while read line ; do
grep --color Name /proc/$line/status;
grep --color -E "^Pid*" /proc/$line/status;
grep --color VmSwap /proc/$line/status ;
echo "- - - - - -"
done