Ajouter droopy_sender

main
jeffrey 2025-07-13 10:50:44 +02:00
parent 8aab8b6da0
commit 165f4a1794
1 changed files with 10 additions and 0 deletions

10
droopy_sender Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
if [ $# -ne 1 ];then
echo "You must provide a file to upload!"
exit 1
fi
URL="http://x.x.x.x"
curl -v -F "upfile=@$1" $URL