you are viewing a single comment's thread
view the rest of the comments
[–] 10 points 2 years ago (2 children)

No, more like

use std::process::Command; fn main() { Command::new("sh").arg("-c").arg("echo Hello World!").spawn().unwrap(); }

.
Just a little bit shorter, as it seems /s

  • source
  • parent
  • hideshow 4 child comments
  • [–] [S] 2 points 2 years ago (1 child)
  • [–] 1 point 2 years ago

    Yes and no. While coreutils does provide an echo binary, shells also have a built-in for optimisation purposes.

    At first I had the code calling the binary directly, but then changed it to spawning a shell (and so using the builtin). It's very cursed either way.

  • source
  • parent