Question: Suppose you have a 100 files in a directory and you need to find out if a keyword occurs in these files. How would you do it in Unix? How would you do it in Windows?

Solution: on Unix:
grep /*
on windows (using a dos command):
find (keyword) (file location & pattern)