Crates.io | russh-process |
lib.rs | russh-process |
version | 0.1.0 |
source | src |
created_at | 2024-11-30 07:06:26.001763 |
updated_at | 2024-11-30 07:06:26.001763 |
description | A library for running a command on a remote server via SSH. |
homepage | https://github.com/yamaura/russh_process |
repository | https://github.com/yamaura/russh_process |
max_upload_size | |
id | 1466362 |
size | 62,078 |
This crate provides an interface similar to std::process::Command
for russh
library.
It allows executing commands, streaming their output, and retrieving their exit status.
std::process::Command
API.stdin
, stdout
, and stderr
streams.ExitStatus
.spawn
and output
methods for more control over process handling.