Quite often we need to start many jobs in a supercomputer center. In this example I have to submit Gaussian files with com extension. All of them are in one directory. (I have my own script g03-test to start Gaussian). We can do it in a one line:
for i in *.com ; do g03-test "$i"; done
No comments:
Post a Comment