Massive updates, added install for nc binary

This commit is contained in:
2026-02-27 19:09:47 -06:00
parent 031ad72f59
commit 7cbcf806e4
5 changed files with 53 additions and 24 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/ash
#shellcheck shell=dash
#
. /recalbox/share/system/configs/savesync/savesync.conf
mosquitto_sub -h 127.0.0.1 -p 1883 -t "$TOPIC" | while IFS="=" read -r key value
do
case "$key" in
"SaveLog") printf "%s\n" "$value" >> "$LOG_FILE" ;;
esac
done