I have a perl script to run on both UNIX and Windows. How should I write the Shabang line:
On UNIX, it is
#!/usr/bin/perl
On Windows, it is
#!C:\perl\bin\p erl.exe
Which one should I use?
Should I combine them?
If yes, how?
Thanks,
dxz
On UNIX, it is
#!/usr/bin/perl
On Windows, it is
#!C:\perl\bin\p erl.exe
Which one should I use?
Should I combine them?
If yes, how?
Thanks,
dxz
Comment