From dcc04cba2446a7bfe8af8268229f3ca28e228b13 Mon Sep 17 00:00:00 2001 From: epoch Date: Mon, 21 Nov 2016 03:08:58 -0600 Subject: added an example use of hackvr with the filebrowser dir. updated a bunch of stuff in hackvr needed to that that filebrowser working. added a multicast example what uses mcast program in my misc repo. updated obj2hackvr to require a filename as argument instead of using stdin --- multicast/run | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 multicast/run (limited to 'multicast') diff --git a/multicast/run b/multicast/run new file mode 100755 index 0000000..59b41dc --- /dev/null +++ b/multicast/run @@ -0,0 +1,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 -- cgit v1.2.3