# 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" ```