ack on solaris – grep recursively.
<span style="background-color: #ffffff;">Some days back I posted an article on ack <a href="http://blog.amit-agarwal.co.in/2009/08/24/more-powerful-grep-ack/" target="_blank">here. Today I was working on Solaris 9 and the default grep installed on the system does not have the ”-r” option to search recursively. So, you know for all the time I had to keep using find with grep to work with directories recursively. This was something similar to the one below:
<span style="background-color: #ffffff;">find . -type f -exec grep amit {} \;
Continue reading