all.
I have a quick question. I have a bunch of files named test01.vc, test02.vc, .., test84.vc. These are source code for a subset of c. Now I want to automatically test my compiler. So what I want to do is basically run three commands on each source file automatically. The commands are, in order:
java VC.vc testXX.vc
java jasmin.Main testXX.j
java testXX
How do I write a terminal script that does this for each file?