mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
5 lines
207 B
Bash
5 lines
207 B
Bash
|
#!/bin/sh
|
||
|
# Place cross compiled version of `socat` in /mnt/data/hdhomerun
|
||
|
HDHOMERUN_IP=10.10.30.146
|
||
|
|
||
|
/mnt/data/hdhomerun/socat -d -d -v udp4-recvfrom:65001,broadcast,fork udp4-sendto:{$HDHOMERUN_IP}:65001 &
|