I have a complex command that I’d like to make a shell/bash script of. I can write it in terms of $1
easily:
foo $1 args -o $1.ext
I want to be able to pass multiple input names to the script. What’s the right way to do it?
And, of course, I want to handle filenames with spaces in them.