view scripts/minicom.sh @ 1455:70f5188b4848 draft

Add cp -F to force delete of existing destination files, and make install command use that. -F is equivalent to the gnu/dammit flag --we-think-long-options-without-short-options-are-a-good-idea
author Rob Landley <rob@landley.net>
date Mon, 01 Sep 2014 12:47:32 -0500
parents 2428870ce50c
children
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

SPEED="$2"
[ -z "$SPEED" ] && SPEED=115200

stty $SPEED -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.