wake-on-lan-service/run.sh

9 lines
111 B
Bash
Raw Normal View History

2022-06-12 23:09:01 +00:00
#!/bin/sh
set -u
while true; do
2022-06-13 01:26:05 +00:00
mac=$(nc -l -p "$PORT" | sed 's/[^a-fA-F0-9:]//g')
2022-06-12 23:09:01 +00:00
awake "$mac"
done