pranaless
@pranaless@beehaw.org
This is a remote user, information on this page may be incomplete. View at Source ↗
- Comment on Pigeons 11 months ago:
A kuu sticks.
- Comment on thisIsGoingToBeASeriousDebate 1 year 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.
- Comment on thisIsGoingToBeASeriousDebate 1 year ago:
use std::process::Command; fn main() { Command::new("sh") .arg("-c") .arg("echo Hello World!") .spawn() .unwrap(); }
Like this?