in reply to Re: help need with flexlm
in thread help need with flexlm

I need for each product. If a user uses 30% of the total number of a product, I need an email. I will try with what you have suggested and let you know with the result.

Replies are listed 'Best First'.
Re^3: help need with flexlm
by vkknava (Novice) on May 04, 2013 at 14:56 UTC

    I tried with the first half of the code. But it is not printing the number.

    Another thing is I have many products in the output file. I am calculating the usage of each product.

    #!/usr/bin/perl local $/; open(DAT, "output1.txt") || die("Could not open file!"); my $line = <DAT>; my $product; if ( $line =~ m/Users of/ ) { $line =~ m@Product(\d+):@; $product = $1; print $product; }