开发者

File Type .pl Association and Using cmd.exe to Run the Script

开发者 https://www.devze.com 2023-02-11 15:47 出处:网络
I\'ve made a new file type .pl (Explorer->Tools->Folder Options...->File Types). Now I wanted to make a new Action which will call cmd.exe and automatically run PERL script.I don\'t know what to write

I've made a new file type .pl (Explorer->Tools->Folder Options...->File Types). Now I wanted to make a new Action which will call cmd.exe and automatically run PERL script.I don't know what to write under "Applications used to perform 开发者_如何学Goaction" ,I have to pass cmd.exe certain arguments but I don't know which. Form of arguments should ,I suppose, be:[cmd.exe] <file location> perl <file name>


To permanently associate *.pl with perl.exe, at a command prompt type the following.

assoc .pl=PerlScript
ftype PerlScript=c:\perl\bin\perl.exe %1 %*

Note that you could also associate *.pl with wperl.exe, which will run the script without a visible command window. wperl.exe is part of the ActiveState perl distribution.


Application used to perform actions:

"c:\perl\bin\perl.exe" "%1" %*

assuming "c:\perl\bin\perl.exe" is the correct file spec of your Perl executable.

0

精彩评论

暂无评论...
验证码 换一张
取 消