in reply to Alternative to using system grep
There is also the quite useful module File::Find::Rule, which makes grepping files easy:
use strict; use File::Find::Rule; my @files = File::Find::Rule ->file() ->grep(qr!<value>IsFrequentlyUsed</value>!) ->in('.');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Alternative to using system grep
by Aristotle (Chancellor) on Aug 18, 2004 at 12:05 UTC | |
|
Re^2: Alternative to using system grep
by synistar (Pilgrim) on Aug 18, 2004 at 14:07 UTC | |
by Aristotle (Chancellor) on Aug 18, 2004 at 15:37 UTC | |
by synistar (Pilgrim) on Aug 19, 2004 at 13:26 UTC |