Crates.io | fast-scp |
lib.rs | fast-scp |
version | 0.1.5 |
source | src |
created_at | 2024-05-11 11:37:01.205557 |
updated_at | 2024-07-20 08:34:40.799967 |
description | A fast and simple scp CLI tool |
homepage | |
repository | https://github.com/dcodesdev/fast-scp |
max_upload_size | |
id | 1236820 |
size | 40,749 |
A Rust CLI tool to copy files from your linux remote server to your local machine. Each file is ran on a separate thread, which makes it much faster than the traditional scp
command.
fast-scp receive <remote-path> <local-path> --host <host>
remote-path
: The path to the file or directory on the remote server.local-path
: The path to the directory on the local machine where the files will be copied to.host
: The IP address or hostname of the remote server.user
(optional): The username to use to connect to the remote server. Default is root
.private-key
(optional): The path to the private key to use to connect to the remote server. Default is ~/.ssh/id_rsa
.replace
(optional): If set, the local file will be replaced if it already exists. Default is false
.Licensed under MIT License. See LICENSE for more information.