I want to run my parallel programs as
$ myprogram <args> -n 4 <args>
instead
$ myprogram <args> +RTS -N4 -RTS <args>
The main reason is to normalize the format of the arguments in my programs.
I know what he could do as
$ myprogramwrapper <args> -n 4 <args> $ cat myprogramwrapper
but it is ugly.
Thanks a lot!:)
source share