in reply to Running a shell script from Perl, and making that shell script accept input from perl script.
-----------wrap.sh-- #!/bin/sh "$@"
If you have a submitting job and the sub jobs that need to communicate, you can still use pipes if that makes sense. And obviously if you have the proper shebang line in your perl script you don't need to call perl explicitly.qsub -o <log> -q <queue> [other qsub args] wrap.sh perl scriptname scr +iptargs
Perhaps this trick will help you think of other ways to solve your issue.
|
|---|