I recently discovered the usefulness of find (which makes up its clumsiness, forcing you to type -name to search, with the awesome -exec option). So I'm curious what commands do you find to be the most useful?
history | awk '{print $2}' | grep -v cd | grep -v ls | sort | uniq -c | sort -nr | head -10
(to look for your top ten commands)