view scripts/minicom.sh @ 299:b142219d828f

Most of an susv3 compliant sort implementation (loosely based on the one I wrote back in 2005). Still a few bugs. Needs a _biiiiig_ test suite...
author Rob Landley <rob@landley.net>
date Wed, 18 Jun 2008 19:31:32 -0500
parents 2f7ca1a1e274
children 2428870ce50c
line wrap: on
line source

#!/bin/bash

# If you want to use toybox netcat to talk to a serial port, use this.

if [ ! -c "$1" ]
then
  echo "Usage: minicom.sh /dev/ttyS0"
  exit 1
fi

stty 115200 -F "$1"
stty raw -echo -ctlecho -F "$1"
stty raw -echo  # Need to do it on stdin, too.
./toybox netcat -f "$1"
stty cooked echo  # Put stdin back.