brain/src/ops/shelltips.md

8 lines
168 B
Markdown
Raw Normal View History

2018-01-17 14:47:55 +00:00
# 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"
2019-07-07 19:21:21 +00:00
```