Unix/Linux recursive copy of files and folders over a secure shell using the code following:
scp -r <host@machine_name:from_remote_directory_path> <to_local_directory_path>
A full example might look like:
scp -r sizwe@hprobook:./home/sizwe/PycharmProjects ./home/immaculate/OtherPycharmProjects
Note if you do not have a DNS server to resolve hostnames, use your IP address instead. The example above might look like this
scp -r 192.168.43.167:./home/sizwe/PycharmProjects ./home/immaculate/OtherPycharmProjects