Bash input for multiple file

后端 未结 5 1882
一个人的身影
一个人的身影 2021-01-23 17:06

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 a

5条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-23 17:41

    I guess the simplest form is

        for f in "*.ext"
        do                 
             customise.pl  $f.ext $f.ext.in      
        done
    

    OUTPUT:

提交回复
热议问题