home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / c / snippets / do.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-03  |  341 b   |  18 lines

  1. /*
  2. **  DO.C - a simple facility for specifying multiple commands
  3. */
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7.  
  8. void main(int argc, char *argv[])
  9. {
  10.       if (2 > argc)
  11.       {
  12.             puts("Usage: DO \"DOS command 1\" \"DOS command 2\" ...");
  13.             return;
  14.       }
  15.       while (--argc)
  16.             system(*++argv);
  17. }
  18.