Finding large files
// Hi all, just a cheap and easy way to find a bunch of large files on your server etc..
#!/bin/bash for file in `find / -type f -size +100000`; do ls -lh $file done