uploader.sh 143 B

123456
  1. #/usr/bin/env bash
  2. for i in {1..1000000}
  3. do
  4. echo "#### $i ####"
  5. curl -X POST -F image_file=@$1 http://localhost:1234/post > /dev/null
  6. done