summaryrefslogtreecommitdiffstats
path: root/cholerab/ttycnser.sh
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2011-08-12 15:20:57 +0200
committermakefu <github@syntax-fehler.de>2011-08-12 15:20:57 +0200
commite28f38e69569f5a69c72346e4e9c00024a7a82ab (patch)
tree6fe4cb89caf17d2e89daf99bb35c5c4370a22d78 /cholerab/ttycnser.sh
parent4ff483f4a721b488acaaf30557d1d6168022c42c (diff)
parent56c0db6825605e4d5d2c7e697c6d3948e1efc23a (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'cholerab/ttycnser.sh')
-rwxr-xr-xcholerab/ttycnser.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/cholerab/ttycnser.sh b/cholerab/ttycnser.sh
new file mode 100755
index 00000000..0972dbbb
--- /dev/null
+++ b/cholerab/ttycnser.sh
@@ -0,0 +1,27 @@
+#! /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