Skip to content

Instantly share code, notes, and snippets.

@libcrack
Created February 6, 2016 09:49
Show Gist options
  • Select an option

  • Save libcrack/a4ea9049c357365e4454 to your computer and use it in GitHub Desktop.

Select an option

Save libcrack/a4ea9049c357365e4454 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
while(<STDIN>) {
if (/(https?:\/\/\S+)$/i){
print "$1\n";
}
}
exit 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment