Expand description
§cmd-utils crate
Safe Rust Command utility traits
- run command (
spawn&waitwrapper) - pipe commands
- output to file (
spawn&wait& outuput to file wrapper)
§CmdRun trait
use std::process::Command;
use cmd_utils::CmdRun;
// `spawn` the command and `wait` for child process to end
// note that `run` does not return the command output, just Ok(())
// but you can redirect stdout & stderr where you want
Command::new("test")
// .stdout(cfg)
// .stderr(cfg)
.args(["-n", "a"])
.run()
.unwrap();§CmdPipe trait
use std::process::Command;
use std::str;
use cmd_utils::CmdPipe;
// pipe echo & wc commands
// equivalent to bash: echo test | wc -c
let mut echo = Command::new("echo");
let mut wc = Command::new("wc");
let output = echo.arg("test")
.pipe(&mut wc.arg("-c"))
.unwrap();
let res = str::from_utf8(&output.stdout).unwrap();
println!("pipe result: {}", &res);§CmdToFile trait
use std::fs::File;
use std::process::Command;
use cmd_utils::CmdToFile;
let stdout = File::create("tmp/my_file.stdout").unwrap();
let stderr = File::create("tmp/my_file.stderr").unwrap();
let mut cmd = Command::new("echo");
// writes stdout to file
cmd.arg("test").to_file(stdout, Some(stderr));Structs§
- Child
Error - Child process error
Enums§
- CmdSpawn
Error - Error result of a command spawn
Traits§
Functions§
- command_
pipe - Pipe stdout of
commandto stdin ofpipedcommand - command_
pipe_ base - Pipe stdout of
commandto stdin ofpipedcommand, and pipe stdout ofpipedtopiped_stdout - command_
pipe_ to_ file - Pipe stdout of
commandto stdin ofpipedcommand and pipe stdout ofpipedtofile - command_
spawn spawnandwaitcommand- command_
to_ file spawn,waitand send the stdout of the command to a file