Hello everyone,
Hoping someone could shed some light on the following problem I am having. I have the script below which I would like to only display unique results when a regex is performed. I am not sure what I am doing wrong, I am pretty new to the unique command and tried several ways of doing it all with no results.
Thanks for the help in advance.
use File::Find;
$DIRECTORY = "/Users/data";
find(\&edits, $DIRECTORY);
sub edits()
{
if ( -f and /.txt$/ ) {
$TEXT_FILE = $_;
open MATCHING_FILE, $TEXT_FILE;
@all_lines = <MATCHING_FILE>;
close MATCHING_FILE;
for $each_line ( @all_lines ) {
if ( $each_line =~ /[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}|pa
+ssword|(ssn=)/i ) {
@results = $each_line;
%hashTemp = map { @results => 1 } @results;
%array_out = sort keys %hashTemp;
print @array_out;
}
}
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.