• Apr 29, 2012

    find grep on Mac OS X

    On linux machines I search files using find, egrep and xargs as follows:  find . -name "*.cpp" | xargs -i egrep -iHn "some search string" {}this outputs any matches with...

  • May 28, 2008

    Using find and printf

    This is basic stuff but I wanted to post it so I can find it when I search for it...How to find a file and print the name, path and...