Hi All,

I am new to Linux OS. I am trying to run a batch programs so i using Shell script to run the batch files. And the binaries which i am running dumps log data to command prompt.I am trying to store this log file in shell script ">log.txt". I have posted below my shell script code

************************************************** ********
#!/bin/sh

PATH=/bin:/prj/bin
/prj/bin/RunLibTestStatic -pf tiff.cfg -lqp 0 30 -lqp 1 32 >> out_qp30.txt
echo "Done."
************************************************** ********

This will create a file " OUT_QP~1.txt " instead of "out_qp30.txt"

please let me know how to correct this problem.

Thanks
fido