I run a C++ code for several data files in sequence using:
for i in $(seq 0 100); do ./f.out c2.$(($i*40+495)).bin `c2.avg.$(($i*40+495)).txt; done`
Now if some input files are missing, say c2.575.bin is missing then the command is not executed for the rest of the files. How could I modify the shell command to skip the input files those are missing and move to the next input file?
Thanks.
in the loop, test if file exists before calling a program operating on that file:
This way the
./f.out ...
will be executed only for existing input files.See man test for details.
BTW, the
&&
notation is a shorthand for if. Seehelp if
orman sh
.