That sounds like a shell scripting problem. All you'd need to do is create a string like:
mktrace file1 file2 & mktrace file3 file4 & etc... At least that would work under *nix. & backgrounds the process.. So you could create a long string of files and calls to mktrace (assuming mktrace supports options on execution) and just execute it in backquotes. Of course your computer may or may not go into spasms with all that sudden work -- depending on your hardware and how much processing mktrace requiries. You may want to split up the files into blocks of 25 or 100. Then just run a while loop. -Dan On Thu, 2003-11-13 at 14:25, Quang Nguyen wrote: > Hello All, > > I need to write a program to call a C++ program (mktrace). The program ask > for an input file and then it ask for output file. I have 1000 files that > want to input and I do not want to do one at a time. > > QKN -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]