view scripts/minicom.sh @ 266:2ba3b8dce3ef

Add an install script, with --long --symlink --force and --uninstall options.
author Rob Landley <rob@landley.net>
date Sun, 24 Feb 2008 01:34:01 -0600
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.