add useWhatsChanged

This commit is contained in:
Fedor Katurov 2023-06-02 17:15:04 +06:00
parent 42098fc50a
commit cdb1309a81
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,3 @@
```shell
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | less
```