Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

SciDude's scratchpad

by SciDude (Friar)
on Jun 01, 2004 at 21:05 UTC ( [id://358605]=scratchpad: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #                 my $pid;
    #                 if (!defined($pid = fork)) {
    ...
    
    $pid = fork; 
    exec 'mozilla', '-url', $url unless defined $pid;
    
  2. or download this
    /
    (
    ...
    )
    /gx
    ;
    
  3. or download this
    use Cwd;
    my $dir = getcwd; #find root of script
    ...
    {
    mkdir $dir
    }
    
  4. or download this
    use Cwd 'chdir';  #That overrides chdir to update $ENV{PWD}
    my $dir = getcwd; #find root of script
    ...
    chdir $dir;       #move into the new directory
    print $ENV{'PWD'};
    #do some stuff in $dir here
    
  5. or download this
    my ($sec2, $min2, $hour2) = localtime(time);
    print "Whole hours remaining until midnight: (24-$hour2)=";print 24-$h
    +our2;print" hours\n";
    ...
    else {
    print "There are ";print 2-$hour2;print" hour(s) and ";print 60-$min2;
    +print " minute(s) until the new day.";
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-18 21:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found