Logo

Programming-Idioms

  • Java
  • Lua

Idiom #111 Launch other program

From current process, run program x with command-line parameters "a", "b".

os.execute(x .. 'a b')
import static java.util.List.of;
var b = new ProcessBuilder(of("x", "a", "b"));
try {
    b.start().waitFor();
} catch (Exception e) {
    throw new RuntimeException(e);
}
Runtime.getRuntime().exec(new String[]{"x", "a", "b"});
#include <stdlib.h>
int system("x a b");

This spawns a shell and returns, when the child process has exited.

New implementation...
< >
programming-idioms.org