find and grep for text in /*

Print Friendly, PDF & Email

find . -name * -print | xargs grep “Then fax it to”
or
find . -name ‘*’ -print | xargs grep “development”

List file
find . -name * | xargs grep -l “secure.sal”
or for awkward specials use the single quotes eg:
find . -name * | xargs grep -l ‘$’

Disk space used
du scr /usr/local/home/httpd/vhtdocs | sort -n

Posted in Technology Review.

Leave a Reply

Your email address will not be published. Required fields are marked *