Hi, I am not sure what I am to use for this task, but I am guessing it is shell scripting. But I myself am not familiar with what shell scripting is, so I'm not sure how to do it or if it is possible. If you can give me links or advice, that would be great. What I want to do is:
Create a file, simple text file EX:
param1 (RANDOMVALUE)
Where randomvalue is a random number generated.
run a program with that file we just created and output to a file
./program filewejustcreated > A
The program has already been created and it takes a filename as a parameter, no need to worry about that stuff.
- run another program with the file we just created, the program already exists and out put it to a file
./Anotherprogram filewejustcreated > B
run a diff comamand on A, B
diff A B
Display what diff returns...
Thanks
[Edit] I am using shell: tcsh