brain/src/ops/shelltips.md
2019-07-07 21:21:21 +02:00

8 lines
168 B
Markdown

# Shell Tips
## Find stuff eating all SWAP (kudos gardouille)
```shell
find /proc -maxdepth 2 -type f -iname status -exec grep -HR VmSwap {} \; | grep -v " 0 kB"
```