我想将die
消息重定向到一个单独的文件,以便以后可以比较该文件以确定出了什么问题。
但是这段代码给了我错误:
$ cat test.pl
use strict;
use warnings;
my $log = "msglog.log";
die $log "DEAD$!";
$ perl test.pl
Missing comma after first argument to die function at test.pl line 5, near ""DEAD$!";"
Execution of test.pl aborted due to compilation errors.
$
我不想2>
从调用者那里做一个。有没有办法从脚本中重定向它们?