1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Added uploader.sh

This commit is contained in:
yhirose 2021-12-17 22:34:00 -05:00
parent 793ae9855e
commit c247dcdd7b

6
example/uploader.sh Executable file
View File

@ -0,0 +1,6 @@
#/usr/bin/env bash
for i in {1..10000}
do
echo "#### $i ####"
curl -X POST -F image_file=@$1 http://localhost:1234/post > /dev/null
done