Coole Shell-Scripts


Von Lukas Karrer (lkarrer auf trash.net)


Einige coole Scripts für alle angehenden Sysadmins unter Euch!

Alle Dateien in Subdirectory parsen

find . -type f -print | awk -e '{ print "cat",$1," | sed -e 's/OldText/NewText/' >",$1}' > myscript

Rekursive Voll-Textsuche

find . -type f -exec grep 'mystring' {} \;