Last active
October 11, 2015 16:14
-
-
Save paveljurca/fa3ff1c2c82348725b7d to your computer and use it in GitHub Desktop.
"Create a Page" >> "Pages I Like" >> https://www.facebook.com/browse/fanned_pages/?id=
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.10; | |
use strict; | |
use warnings; | |
use open qw(:std :utf8); | |
# HTML source code | |
# grep 'fsl fwb fcb' -i facebook > facebook2 | |
@ARGV = 'facebook2'; | |
# | |
my @arr; | |
while (<>) { | |
chomp; | |
push @arr, split /<div class="fsm fwn fcg">/; | |
} | |
# page title | |
(m|([^>]+)</a></div>$|m | |
or m|([^>]+)<[^<]*</span></a></div>$|m) | |
and say $1 for @arr; | |
# page info | |
# /([^<]+)/ and say $1 for @arr; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment