Dies ist eine alte Version des Dokuments!
find . -type d -name 02Februar
find /home/benutzername -exec grep -H "Passwort" {} \;
find . -iname "*.php" -exec sed -i -e "s#pin001mp#holzbauer#g" {} \;
find . -iname "*.php" -exec sed -i -e 's#\\e#\\\\e#g' {} \;
find . \( -iname "*.jpg" -o -iname "*.gif" -o -iname "*.png" \) -print0 | rsync -a --remove-source-files --files-from=- --from0 ./ /zielordner/
find . -type f -name "desktop\.ini" -print0 | xargs -0 rm -f
find . -type f -name "RECOVERihkdy.*" -exec rm -rf {} \;
find /pfad -name "*\.mp3" -exec mv {} /zielpfad \;
find -iname "*" \! -iname "somefile.txt" -exec rm -rf {} \;
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
find . -type f -name "ssh-scan"
find -type f -exec grep -q "ssh-scan" {} \; -print
find ./lib -type f -exec md5sum {} \;
find /path/to/directory -type d -empty -exec echo {} \;
find ./ -type d -empty -exec rmdir 2>/dev/null {} \;
find /tmp -type f -print | xargs -- rm -f --
find . -type f -exec file -inb {} \;| sort | uniq -c | sort -nr