How do I ignore the Perl shebang on Windows with Apache 2?

前端 未结 8 760
南方客
南方客 2020-11-29 08:31

I have set up a local Perl web environment on my Windows machine. The application I\'m working on is originally from a Linux server, and so the shebang for source .pl<

8条回答
  •  一整个雨季
    2020-11-29 09:27

    I use #! /usr/bin/env perl as the shebang on all of my perl, whether on *nix or Windows. Windows just ignores it, and the Unixen follow env to the chosen perl disto.

提交回复
热议问题