sub rtdeposit { #Please see NOTE at the top of this file open(WRITERT, ">rt.log") || die "Cannot open rt.log"; print "\nStarting Month:"; chomp($smon = ); print "\nStarting Day:"; chomp($sday = ); print "\nStarting Year (4 digit):"; chomp($syear = ); print "\nDuration in Days:"; chomp($dur = ); print "\nAmount to Add:"; chomp($add = ); print "\nDescription:"; chomp($desc = ); $sdate = Date_to_Days($syear,$smon,$sday); print WRITERT "deposit\n$add\n$dur\n$desc\n$sdate"; reload(); }