You mustn't have copied the command I gave you correctly, did you remember the 2>&1 at the end?
[tt]$ ssh -V
OpenSSH_3.6.1p2, SSH protocols 1.5/2.0, OpenSSL 0x0090701f
$ echo ${BASH_VERSINFO[*]}
2 05b 0 1 release i386-redhat-linux-gnu
$ scp testfile localhost:/tmp > output
$ ls -l output
-rw-r--r-- 1 anni unixadm 0 Jan 18 08:33 output
$ scp -v testfile localhost:/tmp > output
Executing: program /usr/bin/ssh host localhost, user (unspecified), command scp -v -t /tmp
OpenSSH_3.6.1p2, SSH protocols 1.5/2.0, OpenSSL 0x0090701f
<snip>
debug1: Bytes per second: stdin 0.0, stdout 0.0, stderr 0.0
debug1: Exit status 0
$ ls -l output
-rw-r--r-- 1 anni unixadm 0 Jan 18 08:33 output
$ scp -v testfile localhost:/tmp > output 2>&1
$ ls -l output
-rw-r--r-- 1 anni unixadm 3489 Jan 18 08:33 output
$[/tt]
Annihilannic.