summaryrefslogtreecommitdiffstats
path: root/cholerab/too_old/ttycnser.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cholerab/too_old/ttycnser.sh')
-rwxr-xr-xcholerab/too_old/ttycnser.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/cholerab/too_old/ttycnser.sh b/cholerab/too_old/ttycnser.sh
deleted file mode 100755
index 0972dbbb..00000000
--- a/cholerab/too_old/ttycnser.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/sh
-set -euf
-
-tty="${TMPDIR-/tmp}/ttycnser.$LOGNAME.tty"
-
-case "${mode-server}" in
- (server)
- host=0.0.0.0
- port=8080
- export mode=client
- echo "ttycnser @ $host $port" >&2
- exec tcpserver $host $port "$0"
- ;;
- (client)
- line="`read line && echo "$line"`"
- echo -n '7>>>> '"$line"'8' > "$tty"
- ;;
- (install)
- # TODO tell the user to do something like
- # PROMPT_COMMAND="`mode=install ~/p/krebscode/painload/cholerab/ttycnser`"
- echo "ln -snf '`tty`' '$tty'"
- ;;
- (*)
- echo 'Error 1: You are made of stupid!' >&2
- exit 23
- ;;
-esac