将 Perl 生成的脚本提交到 SGE 时捕获作业 ID

发布于 2024-11-03 08:26:55 字数 109 浏览 1 评论 0原文

Perl 无法打开同时运行的命令管道,这会导致通过 qsub 提交到 SGE 时出现问题,因为我丢失了提交的作业 ID。如何将生成的脚本提交给 SGE 捕获 SGE 为其分配的作业 ID?

Perl can't open command pipes that run both in and out, which causes a problem when submitting to SGE via qsub because I lose the job id of my submission. How can I submit a generated script to SGE and capture the job ID that SGE assigns it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

大姐,你呐 2024-11-10 08:26:55

这是 Perl 常见问题解答:如何打开与命令之间的管道?(简短回答:请参阅 IPC::Open2)

另一种方法是使用 shell 中的 I/O 重定向工具来捕获外部程序的输出:

open my $qsub_proc, '|-', "qsub $command $args > some/file";
print {$qsub_proc} $the_input_to_the_command;
close $qsub_proc;

open my $qsub_fh, '<', 'some/file';
my @qsub_output = <$qsub_fh>;
... # now parse @qsub_output to get your job id

This is a Perl FAQ: How can I open a pipe both to and from a command? (Short answer: see IPC::Open2)

Another approach is to use the I/O redirection facilities in your shell to capture the output of your external program:

open my $qsub_proc, '|-', "qsub $command $args > some/file";
print {$qsub_proc} $the_input_to_the_command;
close $qsub_proc;

open my $qsub_fh, '<', 'some/file';
my @qsub_output = <$qsub_fh>;
... # now parse @qsub_output to get your job id
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文