# ********************************************************
# OS.pl
# for Perl scripts that need to know the OS
# (c)2000,2003 Soren Andersen
# This program is Free Software, it may be used, modified
# and redistributed under the same terms as Perl itself.
# L/M: Friday Aug 01 2003
# ********************************************************
sub IsNotWin {
if ($^O and $^O !~ /WIN32/i) {
return 1;
} elsif ($^O and $^O =~ /WIN32/i) {
return 0;
} elsif (eval ('require ("Win32")') ) {
return 0;
}
return 1;
}
1;
__END__
=head1 NAME OS.pl
=head1 SYNOPSIS
Here is one way to use this:
BEGIN
{ require ("OS.pl");
if &IsNotWin {
print STDERR "Sorry! This script does not run yet ".
"on anything but 32-bit Windows, and ".
"you are using $^O\n";
sleep(3); die;
}
}
=head1 AUTHOR
=over 8
Soren Andersen somian -AT- cpan -DOT- org
=for html <BR><BR>
=cut
<SAMP>Colorized version left for historical authenticity :-)
-- was not popular with the Monks.</SAMP>
<body bgcolor="#000000"
# ********************************************************
# OS.pl
# for Perl scripts that need to know the OS
# (c)2000,2003 Soren Andersen
# This program is Free Software, it may be used, modified
# and redistributed under the same terms as Perl itself.
# L/M: Friday Aug 01 2003
# ********************************************************
sub IsNotWin {
if ($^O and $^O !~ /WIN32/i) {
return 1;
} elsif ($^O and $^O =~ /WIN32/i) {
return 0;
} elsif (eval ('require ("Win32")') ) {
return 0;
}
return 1;
}
1;
__END__
=head1 NAME OS.pl
=head1 SYNOPSIS
Here is one way to use this:
BEGIN
{ require ("OS.pl");
if &IsNotWin {
print STDERR "Sorry! This script does not run yet ".
"on anything but 32-bit Windows, and ".
"you are using $^O\n";
sleep(3); die;
}
}
=head1 AUTHOR
=over 8
Soren Andersen somian -AT- cpan -DOT- org
=for html <BR><BR>
=cut
In reply to OS.pl
by Intrepid
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.