blog icon indicating copy to clipboard operation
blog copied to clipboard

one line code to download AWS whitepapers

Open mylamour opened this issue 6 years ago • 0 comments

Today , i Just want to dowload all the white papers of AWS, so now you can just type:

for url in $(curl  -v --silent https://aws.amazon.com/cn/whitepapers/ 2>&1 |  grep -oE "d1.awsstatic.com.*pdf" | awk '{print "https://" $1}'); do wget $url; done

Now you can find all you need is in your directory:

image

Also, you can download from here

mylamour avatar Jul 17 '19 08:07 mylamour