scp from linux to windows code example
Example 1: linux scp
scp -r -p chemin/vers/dossier/source user@serveur2:chemin/vers/dossier/destination
Example 2: scp ubuntu
scp [email protected]:/files/file.txt [email protected]:/filesCopy
Example 3: copy file from linux to windows ssh
#Download pscp.exe
#./ at the end downloads the file into current directory
scp -P 22 Linux-User@Linux-IpAddress:Exact file path ./
Example 4: scp command in unix
scp [options] username1@source_host:directory1/filename1 username2@destination_host:directory2/filename2