我想右键单击并获取Perl脚本的STDOUT / STDIN的标准命令提示符上下文菜单。然而,只有在我第一次与系统连接的情况下,这才有效。"。为什么呢?
这没有右键菜单:
print 'hello world';
# `dir`; # it *needs* this - commented out doesn't work
<STDIN>; # Just to hold the window open
然而这样做:
print 'hello world';
`dir`; # anything in backticks or system() will work
<STDIN>; # Just to hold the window open