Can use perl for download photos from facebook?

2022-03-19 Thread William Torrez Corea
I have an idea from the program but I don't know where to start. -- With kindest regards, William. ⢀⣴⠾⠻⢶⣦⠀ ⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system ⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org ⠈⠳⣄

Re: Can use perl for download photos from facebook?

2022-03-19 Thread Jim Gibson
Check out the LWP library of modules on CPAN: > On Mar 19, 2022, at 6:07 AM, William Torrez Corea > wrote: > > I have an idea from the program but I don't know where to start. > Jim Gibson -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For addi

Re: Can use perl for download photos from facebook?

2022-03-19 Thread William Torrez Corea
I have a short code: #!/usr/bin/perl; @ARGV = ("Facebook.html"); while(<>){ while(/(http[a-z\-\.0-9:\/]*\w*)_a.jpg/g){ print "wget $1_n.jpg\n"; } } But the result expected is null. I don't know why. On Sat, Mar 19, 2022 at 7:21 AM Jim Gibson wrote: > Check out the LWP library of modules on CPA

Re: Can use perl for download photos from facebook?

2022-03-19 Thread Adam Hopkins
Did you download Facebook.html and already have it sitting on your computer? Can you upload that to a gist and share it here? On Sat, Mar 19, 2022 at 8:48 PM William Torrez Corea wrote: > I have a short code: > > #!/usr/bin/perl; > @ARGV = ("Facebook.html"); > while(<>){ > while(/(http[a-z\-\.0

Re: Can use perl for download photos from facebook?

2022-03-19 Thread William Torrez Corea
Here is the short code: https://gist.github.com/adipasquale/2217595 On Sat, Mar 19, 2022 at 8:10 PM Adam Hopkins wrote: > Did you download Facebook.html and already have it sitting on your > computer? > > Can you upload that to a gist and share it here? > > On Sat, Mar 19, 2022 at 8:48 PM Wil

Re: Can use perl for download photos from facebook?

2022-03-19 Thread Adam Hopkins
I mean the Facebook.html file that you are scanning On Sat, Mar 19, 2022 at 9:17 PM William Torrez Corea wrote: > Here is the short code: > > https://gist.github.com/adipasquale/2217595 > > > > On Sat, Mar 19, 2022 at 8:10 PM Adam Hopkins > wrote: > >> Did you download Facebook.html and already

Re: Can use perl for download photos from facebook?

2022-03-19 Thread William Torrez Corea
https://gist.github.com/Villelmo/8c53e2c1a6ff383ee84b85e31f352409 On Sat, Mar 19, 2022 at 8:23 PM Adam Hopkins wrote: > I mean the Facebook.html file that you are scanning > > On Sat, Mar 19, 2022 at 9:17 PM William Torrez Corea < > willitc9...@gmail.com> wrote: > >> Here is the short code: >> >

Re: Can use perl for download photos from facebook?

2022-03-19 Thread William Torrez Corea
So, friend? On Sat, Mar 19, 2022 at 8:23 PM Adam Hopkins wrote: > I mean the Facebook.html file that you are scanning > > On Sat, Mar 19, 2022 at 9:17 PM William Torrez Corea < > willitc9...@gmail.com> wrote: > >> Here is the short code: >> >> https://gist.github.com/adipasquale/2217595 >> >> >>