How do I create drag-and-drop Strawberry Perl programs?

后端 未结 3 2301
梦如初夏
梦如初夏 2020-12-06 01:52

I\'ve got a Strawberry Perl program that accepts a single-file as a command-line argument. How can I set things up such that I can drag and drop the desired file onto the S

3条回答
  •  臣服心动
    2020-12-06 02:20

    Under Windows (tested with XP), you can create a .cmd file and simply have it run the Perl program with the argument of %1 to pass the filename over, as if executed by commandline.

    perl c:\test.pl %1
    

    Then you can simply drag and drop a file onto the .cmd file to execute.

提交回复
热议问题