echo/
echo.rs

1use std::process::Command;
2
3use printable_shell_command::ShellPrintable;
4
5fn main() {
6    let _ = Command::new("echo").args(["#hi"]).print_invocation();
7}