Gary Luther wrote: : 56 open(CD, ">$cdate") || "Can't open $cdate: $!"; : 60 open(CN, ">$cnum") || "Can't open $cnum: $!"; I think you mean open(CD, ">$cdate") || die "Can't open $cdate: $!" Without the die(), you have a string just sitting there, being useless. -- tdk
- Probably a "no-brainer" - the last two messages. Gary Luther
- Re: Probably a "no-brainer" - the last two ... Chas Owens
- Re: Probably a "no-brainer" - the last two ... Brett W. McCoy
- Re: Probably a "no-brainer" - the last two ... Dan Brown
- Re: Probably a "no-brainer" - the last two ... Rachel Coleman
- Timothy Kimball