mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
7 lines
143 B
Bash
7 lines
143 B
Bash
![]() |
#/usr/bin/env bash
|
||
|
for i in {1..1000000}
|
||
|
do
|
||
|
echo "#### $i ####"
|
||
|
curl -X POST -F image_file=@$1 http://localhost:1234/post > /dev/null
|
||
|
done
|