$1 and $2 are inputs of the scripts
“script minframe maxframe”
bat file:
#!/bin/bash
x=$1
while [ $x -le $2 ]
do
mf_fade -i export_dust_mf.$x.mf -o export_dust_mf1.$x.mf -mc /studio/pib/shdw_fx/prod/sq1150/s193/fx/fx_dust/mc/fade.mc -only densit
x=$(( $x + 1 ))
done
echo “yeah baby, all Done !!!!!”