Please make sure you include either a description of the command or a reference link to explain the command. I'm thinking of newbies here who might find these commands useful but might not know what they do or how to use them.
I cheated a bit, because the find command can be used in combination with any other.
you can use it like this for example:
find /home/rbistolfi/ -name "*.txt"
And it will return all the files ending in "txt" under my home folder.
Recently I made a mistake while compiling Xfce4 and I missed a version number for one of its deps in several SlackBuilds. You can use find to fix stuff like that:
find /opt/chroot6.0/root/xfce4 -name "*.SlackBuild" -exec sed -i 's/foo/bar/g' {} \;
The -exec command executes the rest of the string through the shell, until '\;'. '{}' is a wildcard for the found file name.
I use it for building playlists sometimes

find /home/rbistolfi/music -name "Nirvana*mp3" -exec mplayer {} \;