#script to be called print "hello world\n"; #### #script that does the calling $output = `perl hello.pl`; print "Hello.pl printed\n\t$output"; #OUTPUT #Hello.pl printed # hello world #