Schlagwort: Volltextsuche

  • Volltextsuche unter Linux

    find . -type f -exec grep -qi "suchwort" {} \; -print

    find = Suchprogramm
    . = das Verzeichnis
    -type f = durchsucht nur Type File
    grep  = Sucht nach einem bestimmten Suchwort