I created a for loop that goes through multiple files and outputs the results into one file:
for x in /home/moleculo/x*; do ExtractOutCalls2.sh /home/Scripts/000 $x & done
So each of my input files starts with letter x, that's x* as input. Script takes each of those input files $x and outputs to file /home/Scripts/000
Now I have a question:
if this is done on a few thousand files, is it a good way to put like this?
also if I use multiple input files, but specify one output file, will this mean, that my output will won't be appended? If not, how to do it
Regards, Irek