/* +++Date last modified: 05-Jul-1997 */

/*
**  DO.C - a simple facility for specifying multiple commands
*/

#include <stdio.h>
#include <stdlib.h>

main(int argc, char *argv[])
{
      if (2 > argc)
      {
            puts("Usage: DO \"DOS command 1\" \"DOS command 2\" ...");
            return -1;
      }
      while (--argc)
            system(*++argv);
      return 0;
}

