you can't copy using the 'ssh' program specifically, but you can with it's associated programs: sftp or scpsftp is (and works) similar to ftpscp is a neat little program:copy from a remote machine to my machine:scp user@192.168.1.100:/home/remote_user/Desktop/file.txt /home/me/Desktop/file.txtcopy from my machine to a remote machine:scp /home/me/Desktop/file.txt user@192.168.1.100:/home/remote_user/Desktop/file.txtcopy all file*.txt from a remote machine to my machine (file01.txt, file02.txt, etc.; note the quotation marks:scp...