grep is an extremely powerful tool. If you remember something mentioned in a file, but don't remember what that file was called, or where it was, you can search entire directories (recursively) for a string.

$ grep -R “I seem to forget” *
...will search all contents of the current directory, and its sub-directories, for files that contain the string “I seem to forget”