copy directory local to ssh code example
Example 1: copy from local to ssh ubuntu
scp -r your_user_name@ip_address_of_PCA:/path/to/remote/directory /path/to/local/directory
Example 2: how to copy directory to a ssh server
# Copy from machine a to b
scp -r /path/to/directory user@ipaddress:/path/to/destination
# Copy from machine b to a
scp -r user@ipaddress:/path/to/destination /path/to/directory
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