Mercurial Hosting > quicktimer
annotate 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 |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 #Complation script | |
1
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
3 clear |
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
4 echo "Compiling." |
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
5 rm quicktimer |
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
6 gcc quicktimer.c -o quicktimer |
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
7 echo "WITHOUT ARGS" |
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
8 ./quicktimer |
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
9 echo "WITH ARGS" |
5725e5313328
Almost functional, need to interpret arg correctly, also ugly system() usage
VilyaemKenyaz
parents:
0
diff
changeset
|
10 ./quicktimer 30 |