我试图使用反引号在Perl中运行
Linux命令.它在我直接在
Linux中运行时有效,但是当Perl通过反引号执行时,我收到此错误:
sh: -c: line 0: Syntax error near unexpected token `>' sh: -c: line 0: `(/src/storageUtil --diagnostic 2> >(tee >(cat >&2) >&1)) > log.txt'
有问题的代码行是:
$output = `(/src/storageUtil --diagnostic 2> >(tee >(cat >&2) >&1)) > log.txt`;
任何可能导致此错误的见解都将非常感激.
谢谢