The unix find command…

By robby

…beyond the man-pages:

find

  • by text in file’s name
    find . -name "my.file" -print
  • by text in file’s content
    find . -exec grep "4therecord" '{}' \; -print

A detailed explanation and more examples here.

Eine Antwort schreiben