Mercurial Hosting > quicktimer
comparison c.sh @ 1:5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
author | VilyaemKenyaz |
---|---|
date | Wed, 26 Jul 2023 03:18:00 -0400 |
parents | ee518e7d265d |
children | bdd83d6807d5 |
comparison
equal
deleted
inserted
replaced
0:ee518e7d265d | 1:5725e5313328 |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 #Complation script | 2 #Complation script |
3 tcc quicktimer.c -o quicktimer | 3 clear |
4 echo "Compiling." | |
5 rm quicktimer | |
6 gcc quicktimer.c -o quicktimer | |
7 echo "WITHOUT ARGS" | |
8 ./quicktimer | |
9 echo "WITH ARGS" | |
10 ./quicktimer 30 |