summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/SNIP/do.c
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/CONTRIB/SNIP/do.c')
-rwxr-xr-xreference/C/CONTRIB/SNIP/do.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/reference/C/CONTRIB/SNIP/do.c b/reference/C/CONTRIB/SNIP/do.c
new file mode 100755
index 0000000..67bf758
--- /dev/null
+++ b/reference/C/CONTRIB/SNIP/do.c
@@ -0,0 +1,17 @@
+/*
+** DO.C - a simple facility for specifying multiple commands
+*/
+
+#include <stdio.h>
+#include <stdlib.h>
+
+void main(int argc, char *argv[])
+{
+ if (2 > argc)
+ {
+ puts("Usage: DO \"DOS command 1\" \"DOS command 2\" ...");
+ return;
+ }
+ while (--argc)
+ system(*++argv);
+}