Copia il file "foobar.txt" da un host remoto all'host locale:
$ scp your_username@remotehost.edu:foobar.txt /some/local/directory
Copia il file "foobar.txt" dall'host locale a un host remoto:
$ scp foobar.txt your_username@remotehost.edu:/some/remote/directory
Copia la directory "pippo" dall'host locale nella directory "barra" di un host remoto:
$ scp -r foo your_username@remotehost.edu:/some/remote/directory/bar
Copia il file "foobar.txt" dall'host remoto "rh1.edu" all'host remoto "rh2.edu":
$ scp your_username@rh1.edu:/some/remote/directory/foobar.txt your_username@rh2.edu:/some/remote/directory/
Copia dei file "foo.txt" e "bar.txt" dall'host locale alla directory principale sull'host remoto:
$ scp foo.txt bar.txt your_username@remotehost.edu:~
Copia il file "foobar.txt" dall'host locale a un host remoto utilizzando la porta 2264:
$ scp -P 2264 foobar.txt your_username@remotehost.edu:/some/remote/directory
Copia più file dall'host remoto nella tua directory corrente sull'host locale:
$ scp your_username@remotehost.edu:/some/remote/directory/\{a,b,c\} .
$ scp your_username@remotehost.edu:~/\{foo.txt,bar.txt\} .
Per ulteriori informazioni: Copia protetta