I would like to use Gnu parallel to parallelized a psql command like :
SELECT func('param', 10);
But as gnu parallel uses the simple quote to delimit the bash command, like :
seq 0 9 | parallel -jobs 10 'psql -c "SELECT func('param', 10);"' \> {}.log
this is not working.
I tried different ways, without success. So I really appreciate some help.