Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Backticks and Pattern Matching.

by halley (Prior)
on Feb 05, 2008 at 15:30 UTC ( [id://666318]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $spooler = `lpstat -r`;
    if ( $spooler = "scheduler is not running" )
    
  2. or download this
    if ( $spooler eq "scheduler is not running" ) ...
    if ( index($spooler, "scheduler is not running") >= 0 ) ...
    if ( $spooler =~ /scheduler is not running/ ) ...
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://666318]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-20 09:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found