6 lines
125 B
Bash
Executable file
6 lines
125 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for f in tests/Browser/screenshots/*.png
|
|
do
|
|
curl -F 'upload=@$f' -F 'format=txt' http://uploads.im/api
|
|
done
|