Logo

Programming-Idioms

  • Fortran
  • JS

Idiom #111 Launch other program

From current process, run program x with command-line parameters "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 
const { exec } = require('child_process');
exec(`${x} a b`);

This assumes a node.js environment.

See the documentation for examples on how to capture output, and equivalent synchronous commands.

#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