I have thousands of two set of files one with name.ext and another files name ending with name.ext.in, so for every name.ext there is a name.ext.in and now i have to pass this as argument to a script such as customise.pl name.ext name.ext.in. I am doing like
#!/bin/bash
FILE1=$.ext
FILE2=$.ext.in
customise.pl $FILE1 $FILE2
but no success. Any idea?
customise.plfor each pair.