How to recursively search folders for a string using grep and ack
grep -r "string" . # apparently capital R follows symlinks grep -R "string" . ## Or use ACK ack "string" folder