Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: help need with flexlm

by blue_cowdawg (Monsignor)
on May 04, 2013 at 10:00 UTC ( [id://1032015]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    if ( $line =~ m@Users of Product@ ) {
           $line =~ m@Product(\d+):@;  # match and capture product number 
           $product = $1l
    
  2. or download this
    $line = s/\s+//; #get rid of the leading spaces
    my @f=split(/[\s\t]+/,$line);
    ...
    $counter{$user} = [] if ( ! defined($counter{$user}) ) ;
    
    $counter{$user}->{$product}++;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-24 02:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found