Hello all, A quick question for the list. How do I capture stdout from a backquoted SSH command in perl? For example: $Foo=`ssh myhost 'ls /tmp/bar`; I want $Foo to contain the ls output or "file not found" error string. I tried ssh -n but that didn't help. Thanks