How do you use frmcmp_batch.sh to compile a whole directory of fmbs
I've got a whole directory of forms to compile under 10g release 2. Previously, I used a script and used the following unix script ...
.
for i in `ls *.fmb`
do
echo Compiling Form $i ....
frmcmp userid=xxx/xxx@myDB batch=yes module=$i module_type=form
compile_all=yes window_state=minimize
done
.
This loops thru all the fmbs in a given directory, and compiles them...
Now with 10g Rel 2...what is the equivalent?
I know that you can use frmcmp.sh to compile a single form using a GUI, but I don't need the GUI, I want to compile the whole directory as I used to be able to do w/o a GUI...Is there an equivalent now like frmcmp_batch, and what parameters does it take?
Phil