/* ** DO.C - a simple facility for specifying multiple commands */ #include #include void main(int argc, char *argv[]) { if (2 > argc) { puts("Usage: DO \"DOS command 1\" \"DOS command 2\" ..."); return; } while (--argc) system(*++argv); }