I have a shell script foo.sh which is qsub with content:
#!/bin/bash -l
I would like to pass two arguments. If I call qsub foo.sh ab, the first argument will be correctly processed and repeated on the command line as "a". However, I do not know how to pass an argument in the second case, starting with "# $ -N". In this case, $ 2 is not evaluated as 'b', but actually '$ 2'. Help would be greatly appreciated.
source share