One of the most useful commands I've developed for reviewing source is a command to extract all strings from a
given directory. To execute this command, open a terminal and cd into the directory containing the source you
would like to audit. Next, run:
egrep -e "(\"|')(\w|\s|\d)*(\"|')" -r -h -I -o . | sort -u