A little bit of unix command knowledge can often save a stack of time even on a windows box. This little snippet was really useful when I was trying to find out which file a function was declared in:
find . -name "*.h" | xargs grep textToSearchFor
A little bit of unix command knowledge can often save a stack of time even on a windows box. This little snippet was really useful when I was trying to find out which file a function was declared in:
find . -name "*.h" | xargs grep textToSearchFor