use strict; my $system_call = `echo hello world`; my $output = scalar(localtime())." $system_call"; print STDOUT $output,"\n"; # output # Tue May 31 09:04:22 2005 hello world