in reply to problem with naming the file with current date and time

Simply use strftime:
use strict; use POSIX qw(strftime); my $name = strftime ("%Y%m%d-%H%M%S", localtime);
more about this here.


holli, /regexed monk/