summaryrefslogtreecommitdiffstats
path: root/c/do
diff options
context:
space:
mode:
Diffstat (limited to 'c/do')
-rwxr-xr-xc/do5
1 files changed, 4 insertions, 1 deletions
diff --git a/c/do b/c/do
index 661ebd2..6b8bc8a 100755
--- a/c/do
+++ b/c/do
@@ -1,6 +1,9 @@
#! /bin/sh
+BROWN="\033[0;33m"
+RESET="\033[0m"
for c in *.c
do
- echo "############" && clang -pedantic -Wall -ldl $c -o ./bin && ./bin
+ echo -e "###> $BROWN${c}$RESET <###" && clang -pedantic -Wall -ldl $c -o ./bin && ./bin
+ echo
done
rm ./bin