annotate scripts/minicom.sh @ 1087:b73a61542297 draft

I've finally gotten 'cpio' into a shape where it could be useable. This version can archive and extract directories, sockets, FIFOs, devices, symlinks, and regular files. Supported options are -iot, -H FMT (which is a dummy right now). It only writes newc, and could read newc or newcrc. This does NOT implement -d, which essentially is equivalent to mkdir -p $(dirname $FILE) for every file that needs it. Hard links are not supported, though it would be easy to add them given a hash table or something like that. I also have not implemented the "<n> blocks" output on stderr. If desired, I can add it pretty simply. There is one assumption this makes: that the mode of a file, as mode_t, is bitwise equivalent to the mode as defined for the cpio format. This is true of Linux, but is not mandated by POSIX. If it is compiled for a system where that is false, the archives will not be portable.
author Isaac Dunham <ibid.ag@gmail.com>
date Mon, 14 Oct 2013 11:15:22 -0500
parents 2428870ce50c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
203
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 #!/bin/bash
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
2
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 # If you want to use toybox netcat to talk to a serial port, use this.
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
4
208
2f7ca1a1e274 minicom.sh should check for a char device, not a file.
Rob Landley <rob@landley.net>
parents: 203
diff changeset
5 if [ ! -c "$1" ]
203
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 then
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 echo "Usage: minicom.sh /dev/ttyS0"
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
8 exit 1
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
9 fi
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
10
363
2428870ce50c Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents: 208
diff changeset
11 SPEED="$2"
2428870ce50c Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents: 208
diff changeset
12 [ -z "$SPEED" ] && SPEED=115200
2428870ce50c Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents: 208
diff changeset
13
2428870ce50c Let the minicom script take the speed as an optional second argument.
Rob Landley <rob@landley.net>
parents: 208
diff changeset
14 stty $SPEED -F "$1"
203
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
15 stty raw -echo -ctlecho -F "$1"
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
16 stty raw -echo # Need to do it on stdin, too.
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
17 ./toybox netcat -f "$1"
bcad24801bc3 Script to use stty with netcat -f to talk to a serial port.
Rob Landley <rob@landley.net>
parents:
diff changeset
18 stty cooked echo # Put stdin back.