russh-process 0.1.0

A library for running a command on a remote server via SSH.
Documentation

Russh Process Command

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.

Features

  • Mimics the std::process::Command API.
  • Provides asynchronous stdin, stdout, and stderr streams.
  • Supports retrieving the command's ExitStatus.
  • Provides spawn and output methods for more control over process handling.

Example