SCP - Secure File Copy
Copy files between local and remote systems using SSH encryption. Supports recursive directory transfers and custom port specifications.
Usage
scp-tool [options] <source> <destination>
Options
-r: Recursively copy directories-P port: Specify SSH port-C: Enable compression for faster transfer-v: Verbose mode for debugging
Examples
scp-tool file.txt user@host:/remote/path/
scp-tool -r ./folder user@host:/remote/folder
scp-tool user@host:/remote/file.txt .