From 550af931488494a2a0477dca0ad8b6644143fce2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 5 Mar 2021 20:32:28 +0100 Subject: OKAY! --- zeitung/placeholder/.gitignore | 1 + zeitung/placeholder/get.sh | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 zeitung/placeholder/.gitignore create mode 100755 zeitung/placeholder/get.sh (limited to 'zeitung/placeholder') diff --git a/zeitung/placeholder/.gitignore b/zeitung/placeholder/.gitignore new file mode 100644 index 0000000..76ce7fc --- /dev/null +++ b/zeitung/placeholder/.gitignore @@ -0,0 +1 @@ +*.jpg diff --git a/zeitung/placeholder/get.sh b/zeitung/placeholder/get.sh new file mode 100755 index 0000000..000e14a --- /dev/null +++ b/zeitung/placeholder/get.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +MAX=300 +if [[ ! -z "$1" ]]; then + MAX=$1 +fi + +for i in $( seq $MAX ); do +FILE=${i}.jpg +curl 'https://thispersondoesnotexist.com/image' -H 'authority: thispersondoesnotexist.com' -H 'pragma: no-cache' -H 'cache-control: no-cache' -H 'upgrade-insecure-requests: 1' -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36' -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3' -H 'referer: https://thispersondoesnotexist.com/' -H 'accept-encoding: gzip, deflate, br' -H 'accept-language: en-US,en;q=0.9' --compressed -o $FILE +sleep 1 +done -- cgit v1.2.3