Hi

Hi

Been banging my head for ages trying to figure this out.

I want to extract all instances of the text in between the words “” and “” from the text on this page s3-us-west-2.amazonaws.com/bayyinahhandouts/

For example:
10.1.1 Introduction to Advanced Sentences (Part 1).pdf

So I want “10.1.1 Introduction to Advanced Sentences (Part 1).pdf”

Then I want to paste this text at the end of this Url:
s3-us-west-2.amazonaws.com/bayyinahhandouts/

So it would become this:
s3-us-west-2.amazonaws.com/bayyinahhandouts/10.1.1 Introduction to Advanced Sentences (Part 1).pdf

And then I want to batch/bulk download all of the resulting pdf links.

Anyone know how to do this?

Im using terminal on OSX. (I would still class myself as a noob at all this stuff too)

Much appreciated.

Other urls found in this thread:

s3-us-west-2.amazonaws.com/bayyinahhandouts/
twitter.com/NSFWRedditGif

parse the xml like a real man
alternatively use regex if you're a kid

where did you get that morrowind upgrade?

Thanks for replying. Don't have a clue about this stuff. Total noob. What should I do?

there are generals meant to contain faggots like yourself.
why must you be so special and requiring spoonfeeding as to demand a specific thread for your cancerous shitposts?

What does parsing mean. Like do it all manually?

dude i have to start somewhere right?

curl -s s3-us-west-2.amazonaws.com/bayyinahhandouts/ | perl -e 'while () { while (m#(.+?)#g) { `curl -O "s3https://s3-us-west-2.amazonaws.com/bayyinahhandouts/$1"`; sleep 5 } }'

curl -s s3-us-west-2.amazonaws.com/bayyinahhandouts/ | perl -e 'while () { while (m#(.+?)#g) { `curl -O "s3-us-west-2.amazonaws.com/bayyinahhandouts/$1"`; sleep 5 } }'

>copy paste mistake, sorry

>curl -s s3-us-west-2.amazonaws.com/bayyinahhandouts/ | perl -e 'while () { while (m#(.+?)#g) { `curl -O "s3-us-west-2.amazonaws.com/bayyinahhandouts/$1"`; sleep 5 } }'

Dude holy fucking shit wow. Thank you so much. It's working!

I definitely need to learn this stuff.

dude the pdf files are only 328 bytes

OP, what the fuck are you doing?

What are all those documents? It's all sandnigger shit. Explain yourself.

Im learning arabic lol

curl -s s3-us-west-2.amazonaws.com/bayyinahhandouts/ | perl -e 'while () { while (m#(.+?)#g) { `wget "s3-us-west-2.amazonaws.com/bayyinahhandouts/$1"`; sleep 5 } }'

Sweet bro. You're my hero. Really. You just saved me hours and days possibly. Ill try and learn myself too but thanks for the help!

Dude this is so awesome! Had to thank you again. Peace.

>spoonfeeding the macfags

He has done a good deed. good things will happen to this guy for helping someone else in need. the universe/god will reward him.

normally i would agree, however op did it right:
1) attempted to solve the problem themselves first
2) described the problem in detail
3) specified their platform
4) said thank you

this is how adults cooperate with each other.

>parsing XML w/ regex
kill yourself nigger

>1) attempted to solve the problem themselves first
this is false

no attempt was done

God him self speaks in regex.

Learn regular expressions, it will enrich your life.

The "." means anything except line breaks, "+" means repeat one or more times, "?" means stop at first full match of the entire thing.

It means you apply regex. That dude is a moron.