Logo

Programming-Idioms

  • Lisp
  • Perl

Idiom #111 Launch other program

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

system $x, 'a', 'b';
(sb-ext:run-program '("a" "b") "/path/to/x")

SBCL only
#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