in reply to cross platform scripts
In this thread I posted a reference to the if module which allows the selective loading of modules based upon conditional tests. In the thread which I have referenced, I posted a snippet of the code would load separate configuration modules based upon the operating system of execution:
use if ( $^O eq 'MSWin32' ), 'MyAppWin32'; use if ( $^O ne 'MSWin32' ), 'MyAppUnix';
Perhaps this is of use to you :-)
perl -le 'print+unpack("N",pack("B32","00000000000000000000001000100001"))'
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: cross platform scripts
by timbu (Novice) on Jan 21, 2003 at 21:27 UTC | |
Re: Re: cross platform scripts
by John M. Dlugosz (Monsignor) on Jan 21, 2003 at 22:55 UTC |