in reply to Re^2: Need to search for a string in a file
in thread Need to search for a string in a file
Someone please correct me if I'm wrong, but I don't think your example will pull the entire file into memory. I think it will read lines from $fh one at a time, passing them to grep, which will return matching lines to @a.
However, you're reading from /dev/urandom, which is an endless stream of random bytes, not a file which has an end. So eventually @a is going to get very large, yes. Also, depending on what your end-of-line delimiter is set to, <$fh> may return some very long lines for grep to deal with.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Need to search for a string in a file
by anneli (Pilgrim) on Oct 20, 2011 at 23:07 UTC | |
by aaron_baugher (Curate) on Oct 21, 2011 at 18:36 UTC |