home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V6 / usr / source / iolib / system.c < prev    next >
Encoding:
C/C++ Source or Header  |  1975-05-13  |  119 b   |  9 lines

  1. system(str)
  2.  char *str;
  3. {
  4. int status;
  5.   if(fork() == 0)
  6.     execl("/bin/sh", "sh", "-c", str, 0);
  7.   wait(&status);
  8.   }
  9.