Skip to content
This repository was archived by the owner on Nov 28, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions emails.pl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ sub find_emails {

# get all emails from command-line args
foreach (@ARGV) {
// changed this file

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lelelelelelel

find_emails($_);
Comment on lines 14 to 16

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

allalalalala

}
Comment on lines +15 to 17

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a review

Comment on lines 14 to 17

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

asdfsad

Comment on lines +15 to 17

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aaaaa


Expand Down
4 changes: 3 additions & 1 deletion input.pl
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@

sub process() {
my $url = shift;
// also changed this file
my $html = qx{curl --silent $url};
Comment on lines +8 to 9

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

foo

while ($html =~ m/([A-Z0-9+_.-]+@[A-Z0-9.-]+)/gi) {
$emails_found{$1}++;
// changed this file again
$emails_found{$1}++;
Comment on lines +11 to +12

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect

}
}