This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
wifi-sd/.wifisd/cgi-bin/wifi_delete

22 lines
370 B
Bash

#!/bin/sh
FILE="/mnt/sd/${QUERY_STRING}"
if [ -f "$FILE" ]; then
#rm -f ${FILE}
#sync
#refresh_sd
echo "Status: 200 OK"
echo "Content-Type: text/plain"
echo ""
echo "File to delete: $FILE"
echo "File exists!"
else
echo "Status: 404 Not Found"
echo "Content-Type: text/plain"
echo ""
echo "File $FILE not found!"
fi
env