Skip to content

Instantly share code, notes, and snippets.

@BonyChops
Created July 27, 2022 00:37
Show Gist options
  • Save BonyChops/f64c5c09932d7df7769c9f7dafd1dd2a to your computer and use it in GitHub Desktop.
Save BonyChops/f64c5c09932d7df7769c9f7dafd1dd2a to your computer and use it in GitHub Desktop.
ランダムなピザの画像を20枚ダウンロードする
#!/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