You're viewing a single thread.
All Comments
41 comments
30p87 @feddit.de Personally,
echo Hello World!
39 1 Replypranaless @beehaw.org use std::process::Command; fn main() { Command::new("sh") .arg("-c") .arg("echo Hello World!") .spawn() .unwrap(); }
Like this?
30 0 Reply30p87 @feddit.de 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 /s10 0 Replyfunkajunk @lemm.ee
I just fucking threw up
8 0 Reply30p87 @feddit.de I did too. Multiple times in fact, I had to look at the other Rust code!
6 0 Reply
TadoTheRustacean @programming.dev OP Isn't echo a shell builtin?
2 0 Replypranaless @beehaw.org 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.
1 0 Reply
41 comments
Scroll to top