in reply to External programs

I usually use backticks to execute external programs and retrieve the output from them...

e.g.

$file = "test.txt"; $ext_out = `ls -l $file`; print "$ext_out";