nbssh

Crates.ionbssh
lib.rsnbssh
version3.0.2
sourcesrc
created_at2019-01-22 05:57:59.080486
updated_at2024-03-16 17:02:28.920853
descriptionSSH command generator
homepage
repositoryhttps://github.com/nicholasbishop/nbssh-rs
max_upload_size
id109933
size22,612
Nicholas Bishop (nicholasbishop)

documentation

README

nbssh

This tool is no longer under active development. If you are interested in taking over or repurposing the name on crates.io, feel free to contact me: nbishop@nbishop.net

crates.io Documentation

SSH command generator. Example usage:

use nbssh::{Address, SshParams};
use std::process::Command;

let params = SshParams {
  address: Address::from_host("myHost"),
  ..Default::default()
};
let args = params.command(&["echo", "hello"]);
Command::new(&args[0]).args(&args[1..]).status().unwrap();
Commit count: 72

cargo fmt