blob: 59b41dc02d564a505e4391c52a59b6540be8b083 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#run hackvr with multicast program I made.
#receive commands from the multicast group
#then send some of my own to everyone else.
#not sure how well this will work over long distances.
mcast 234.5.6.7 31337 \
| sed -u 's/ /_/' \
| grep --line-buffered -v "$1" \
| ./hackvr "$1" \
| grep --line-buffered -v '^#' \
| ncat -u 234.5.6.7 31337
|