home *** CD-ROM | disk | FTP | other *** search
- #include <string.h>
- #include <stdio.h>
- #include <stdlib.h>
-
- #include "sys/syslib.h"
-
- int
- main ()
- {
- int i;
- char b[256];
-
- for (;;)
- {
- if (!fgets (b, 256, stdin))
- break;
- b[strlen (b) - 1] = 0;
- i = system (b);
- if (i < 0)
- perror ("system()");
- else
- printf ("Return Value: %d\n", i);
- }
- return 0;
- }
-