12 lines
500 B
Bash
12 lines
500 B
Bash
|
#!/bin/sh
|
||
|
echo "Running"
|
||
|
while read line
|
||
|
do
|
||
|
echo "Line is ${line}"
|
||
|
curhost=$(echo ${line} | cut -d ',' -f1)
|
||
|
curip=$(echo ${line} | cut -d ',' -f2)
|
||
|
echo "Host ${curhost} and IP ${curip}"
|
||
|
# Upload this image
|
||
|
curl -m 180 --insecure --no-progress-meter --fail-with-body --request POST --url "https://espota.ctdo.de/" --header "Content-Type: multipart/form-data" --form ip="$curip" --form spiffs=@.pio/build/d1_mini/spiffs_${curhost}.bin --no-buffer
|
||
|
done < <(cat lastknownhostips)
|