Thread PDF Datei im Verzeichnissbaum
(7 answers)
Opened by guest at 2007-08-19 18:31
Hallo zusammen und erstmal Danke murphy für den Tipp.
Hier was ich gemacht habe aber ich bekome eine Fehlermeldung Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #!/usr/bin/perl -w use strict; use File::Find; @Verzeichnis = ("Subdir1","Subdir12","Subdir3"); find(\&wanted, @Verzeichnis); sub wanted { $File::Find::dir = "/home/james/gbt" $_ =~ m/pdf/ } #END Ehrlich gesagt ich bin mir nicht sicher ob ich die Subroutine richtig habe. Und hier ist der Fehler: Scalar found where operator expected at ./test2.pl line 14, near "$_" (Missing semicolon on previous line?) Global symbol "@Verzeichnis" requires explicit package name at ./test2.pl line 6. Global symbol "@Verzeichnis" requires explicit package name at ./test2.pl line 7. syntax error at ./test2.pl line 14, near "$_ " Execution of ./test2.pl aborted due to compilation errors. Danke im Voraus |