perl scriptname.pl file.aspx
我希望它能够运行当前目录中的所有aspx文件
谢谢!
my @files = <*.aspx>; for $file (@files) { # do something. }
< * .aspx>被称为glob.