I am trying to parallelize particle simulations with different parameters to save some time. Therefore I wanted to use GNUparallel
to run a bash script for the different parameters. The script reads a file and then performs the simulation eg :
$bash script <<< input file
However:-
$cd ~/parameter_files ls | parallel bash script <<< {}
does not work at all. I am a total newbie to Linux and GNUparallel, so hopefully someone can help.