in reply to How do I run another program from within my Perl program

use the system function or backticks(`) if you want to collect the output;
system "update"; my $datestr=`date`; print "Date output: $datestr\n";