Add shell tips

This commit is contained in:
Wilfried OLLIVIER 2018-01-17 15:47:55 +01:00
parent 577262c6a4
commit 3fec06c11c
2 changed files with 9 additions and 1 deletions

7
src/ops/shelltips.md Normal file
View file

@ -0,0 +1,7 @@
# 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"
```