find / \
-path '/proc' -prune -o \
-path '/dev' -prune -o \
-path '/sys' -prune -o \
-path '/selinux' -prune -o \
-type f \
-exec grep -l fixresolv {} \;
Did you ever fill up a filesystem and want to know what large files are consuming the space. This will sort the largest files, top to bottom.
find /var -mount -ls -xdev | /usr/bin/sort -nr +6 | more