summaryrefslogtreecommitdiffstats
path: root/c/do
diff options
context:
space:
mode:
Diffstat (limited to 'c/do')
-rwxr-xr-xc/do6
1 files changed, 6 insertions, 0 deletions
diff --git a/c/do b/c/do
new file mode 100755
index 0000000..661ebd2
--- /dev/null
+++ b/c/do
@@ -0,0 +1,6 @@
+#! /bin/sh
+for c in *.c
+do
+ echo "############" && clang -pedantic -Wall -ldl $c -o ./bin && ./bin
+done
+rm ./bin