in reply to Re: perl path: WinNT to Unix
in thread perl path: WinNT to Unix
To the best of my knowledge, the #! line on a Windows NT script does nothing.
That's not quite true. In Windows, perl checks the #! line for options. For example, #!/usr/bin/perl -w will turn on warnings. However, everything else you said applies because the path itself is not used. In other words, there's nothing wrong in putting #!/usr/bin/perl in the Windows versions of your scripts, because neither Windows nor perl uses that part of the #! line.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: perl path: WinNT to Unix
by nimdokk (Vicar) on Jan 03, 2005 at 19:25 UTC |