我现在想要打开这样的文件:
open my $handle,"<$filename" or die $!;
我现在如何在公开呼叫之前扩展环境变量,例如,bash shell会做什么?
$filename =~ s/\$(\w+)/$ENV{$1}/g;