int system("x a b");
spawnProcess([x, "a", "b"]);
exec(`${x} a b`);
var b = new ProcessBuilder(of("x", "a", "b"));
try {
b.start().waitFor();
} catch (Exception e) {
throw new RuntimeException(e);
}
`x a b`
int system("x a b");
string[] args = { "a", "b"}; Process.Start(x, string.Join(" ", args));
spawnProcess([x, "a", "b"]);
program p integer :: i call execute_command_line("x a b", exitstat=i) print *, "Exit status of x was ", i call execute_command_line("x a b", wait=.false.) print *, "running x in the background" end program p
err := exec.Command("x", "a", "b").Run()
spawnProcess x ["a","b"]
exec(`${x} a b`);
Runtime.getRuntime().exec(new String[]{"x", "a", "b"});
var b = new ProcessBuilder(of("x", "a", "b")); try { b.start().waitFor(); } catch (Exception e) { throw new RuntimeException(e); }
(sb-ext:run-program '("a" "b") "/path/to/x")
os.execute(x .. 'a b')
exec($x . " a b");
var p: tprocess; begin p.Executable := 'program_x'; p.Parameters.Add('a'); p.Parameters.Add('b'); p.Execute; end.
system $x, 'a', 'b';
subprocess.call(['x', 'a', 'b'])
let output = Command::new("x") .args(&["a", "b"]) .spawn() .expect("failed to execute process");
let output = Command::new("x") .args(&["a", "b"]) .output() .expect("failed to execute process");
let output = Command::new("x") .args(&["a", "b"]) .status() .expect("failed to execute process");