diff options
author | makefu <github@syntax-fehler.de> | 2013-06-07 00:46:36 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-06-07 00:46:36 +0200 |
commit | 83baf76c734a5c9471fd9ab4dd90c952aba4e6a0 (patch) | |
tree | f2c429cb79f7f3937e43130a50241a2e7c81950b /cholerab/too_old/ttycnser.sh | |
parent | b0273180da89e11cd6a7346ed1a72e9f17fbf230 (diff) | |
parent | 5a428d4646b73f16b890f6c089a67dbc710df533 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'cholerab/too_old/ttycnser.sh')
-rwxr-xr-x | cholerab/too_old/ttycnser.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/cholerab/too_old/ttycnser.sh b/cholerab/too_old/ttycnser.sh new file mode 100755 index 00000000..0972dbbb --- /dev/null +++ b/cholerab/too_old/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[2;1H[2K[33;1m>>>> '"$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 |