Thread Bash to Perl Umsetzung
(42 answers)
Opened by kezall at 2014-03-25 09:45
Auf der Basis des Codes von Linuxer:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 #!/usr/bin/perl use warnings; use strict; use Image::Magick; my $anzahl = 0; for my $file ( <*.png> ) { # ausgabe dateiname definieren my $newfile = $file; $newfile =~ s/png$/tif/; # Konvertieren; meldung bei fehler my $image = Image::Magick->new(); my $c = $image->Read($file); if ($c) {warn "$c";} $c = $image->Write("tif:$newfile"); if ($c) {warn "$c";} $anzahl++; } # Umsetzung des ls -m *.png { local $, = ", "; print <*.png>; print "\n"; } Last edited: 2014-03-25 18:45:18 +0100 (CET) |