how to copy file from ssh to local windows code example
Example 1: ssh transfer file from local to remote
scp file.txt [email protected]:/remote/directory
Example 2: copy file from ssh server to local
scp host_name:file_server path_local
Example 3: ssh copy folder from local to remote
scp -r -P xxxx /path/of/your/local/folder username@hostname:/path/to/remote/server/folder