"Robin" <webmaster @ infusedlight.net> wrote in message
news:nqudnbV1kYSqzn7cRVn-...
> What are respectively the difference with linux and windows installed on
> different partitions and windows by itself perl on both machines has
> reletively the same run time, but that is just a guess. I have just
> installed suse linux 9.1 personal and am wondering how to get a hold of
> perl modules and then install them.
Exactly the same way as any other Linux system (unless you use RPM's or
equivalent) that is mentioned in the Perl FAQ.
Let me know if this will be a problem for
> some of you to answer or not. Anyway, thanks in advance.
> -also I need beta testers for the script at
> www.infusedlight.net/cgi-bin/bbs.pl - please be kind.
Nah. We need to be brutely honest.
You *still* haven't taken notice of all the advice given to you in the past.
1. No 'use strict'
2. Wierd formatting of the code.
3. Calling subroutines with an &
4. Not declaring variables in the smallest scope.
5. No error checking on various functions like 'unlink'
Not sure if anyone previously mentioned the use of 'unless' to make code
clearer, but I'll mentioned it here.
Most people tend to think that:
unless (condition) {
reads better than
if (! condition) {