I have an executable called a.sh. It takes in an unknown number of arguments. From the list of arguments, I want to copy all the ones that are files into another folder, (/myfolder).
For example, if I type this on the command line:
./a.sh foo.out | tee -a text.txt
Assuming foo.out and text.txt both exist, I want to copy them to myfolder.
I'm currently thinking about writing all the arguments to a file and reading the file line by line, checking with an if [ -f ] statement. Is there a neater/cleaner solution out there?
Thanks!
text.txtis not treated as an argument ofa.sh. The above command executes./a.sh foo.outand pipes its ouput totee -a text.txt. – Dennis Oct 4 '11 at 14:57