Created
July 27, 2022 00:37
-
-
Save BonyChops/f64c5c09932d7df7769c9f7dafd1dd2a to your computer and use it in GitHub Desktop.
ランダムなピザの画像を20枚ダウンロードする
This file contains hidden or 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
#!/bin/env sh | |
for i in `seq 0 19` | |
do | |
wget -O "pizza_""$i"".jpg" 'https://api.lorem.space/image/pizza?w=150&h=150' | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment