in reply to Removing File Extensions
$logfile = $file; $logfile =~ s/\.asc$/.log/; [download]
if ($file =~ m{(.*)\.asc}) { $logfile = "$1.log"; } [download]
YuckFoo