in reply to collect output of system()

I haven't used system() a lot, but I know you can easily collect the output like
my @output = `ls /tmp` ;
for example!

Cheers
Luca