mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 06:26:02 -07:00
6 lines
143 B
Bash
Executable file
6 lines
143 B
Bash
Executable file
#/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
|