in reply to Re^4: Renaming files in dir
in thread Renaming files in dir
The error was hereforeach my $file (@fileet) { my $newfile = $file; $newfile =~ s/ä/ä/g; $newfile =~ s/ö/ö/g; move("$path/$file", "$path/$newfile"); }
move("$path/$file", "$path/$newfile");
|
|---|