my @return = `at now +3 days -f test2.pl myargument 2>&1`;
如何将该myargument传递给我的脚本test2.pl?在该代码中,它返回错误。
答案 0 :(得分:1)
根据我系统上at
的文档,它会从使用-f
或STDIN指定的文件中读取要执行的bourne shell命令。
因此,以下应该可以解决问题:
`printf %s 'test2.pl myargument' | at now +3 days 2>&1`;