On Saturday, November 5, 2016 at 7:39:30 PM UTC-4, Brad Tucker wrote: > > Here is the latest out put with the new combine.pl. I rebooted the pi as > I was getting strange outputs as well. Once I reboot this new output was > looking mighty fine... >
use -n5 instead of -n8 as the argument to strings. that will ensure that the hostnames do not get appended. at that point you should be able to connect to the interceptor using curl and xargs: sudo tcpdump -Anpl -s0 -w - -i eth0 dst port 80 | stdbuf -oL strings -n5 | ./combine-lines.pl | xargs -n 1 curl http://localhost:9999 -s -d that is all one line m -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
