in reply to Re: getopt::std to pass arguments to command line help
in thread getopt::std to pass arguments to command line help

open STDOUT, '>>', "$log_dir/$log_file", but really
use File::Spec::Functions; ... open STDOUT, '>>', catfile( $log_dir, $log_file ) or die "Can't open $log_file - $!\n";