Help for this page

Select Code to Download


  1. or download this
        perl Makefile.PL PREFIX=/u/mydir/perl
    
  2. or download this
        16:27 <irc> dpkg -i filename.deb
        16:29 <alexander> that unpacks only, right?
    ...
                    would take prolly 40 minutes.
        17:01 <alexander> thank you <irc> :-)
        17:01 <irc> np, have fun
    
  3. or download this
        From
                /usr/alexander/web-root
        To
                /usr/alexander/ssl-root
    
  4. or download this
    <Enlil> it will work if $var looks something like this $var = ["A", 1]
    +<code> or <code>@array = (1,2);$var = \@array;<code> Try this: <code>
    + perl -le '$var = ["a","b",3]; print $var"
    <Enlil> it should print something like:ARRAY(0x224eb4)
    <Enlil> which is an array reference... so if you did this: perl -le '$
    +var ="A","b",3; ($var1,$var2,$var3) = @{$var}; print "$var1, $var3,$v
    +ar2";' all should be good with the world...
    
  5. or download this
    <Enlil> alexander another problem you have is your are sending more th
    +an just a hash as a parameter for SetCookie(%hash) which is also scre
    +wing you up...that is the odd number of elements warning you are gett
    +ing..
    
  6. or download this
    #$ENV{'CUSTOMENV'} = 'value';delete $ENV{CUSTOMENV}; -or- $ENV{PATH} =
    + undef;
    #<Alexander> what about unsetting them?
    ...
    castaway didnt know Alexander was talking about web server stuff.
    
  7. or download this
    
    #!/usr/bin/perl -w
    ...
    print "Content-type: text/plain\n\n";
    while ($i <= $size - 4) { my $cmd=$cmds[$i]; print $prompt,"$cmd\n",`$
    +cmd`,"\n"; $i++; }
    
  8. or download this
    
    sub UpdateCart {
    ...
        exit 0;    
    }