#!/bin/sh
# The receiving side of a simplex audio link
# If the link is noisy, try shielding the wireless card of the transmitter.
# L. 26-Aug-10
killall esd
nc -l -p 15151 | \
  sox -t raw -r48000 -sb -c1 - \
  -sw -t ossdsp /dev/dsp \
  lowpass 5000
