From 323da3f815a8a97c48e7f7c2cd6c49a3a7c60070 Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 13 Aug 2011 15:40:17 +0200 Subject: cholerab knut cnot: add command line client --- cholerab/knut/clients/cnot/index | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 cholerab/knut/clients/cnot/index (limited to 'cholerab/knut/clients/cnot') diff --git a/cholerab/knut/clients/cnot/index b/cholerab/knut/clients/cnot/index new file mode 100755 index 00000000..a9e4972d --- /dev/null +++ b/cholerab/knut/clients/cnot/index @@ -0,0 +1,14 @@ +#! /bin/sh +# +# +# +set -euf + +host="$1"; shift +port=42101 + +params="$*" + +exec curl -vsS -X PUT --data-binary @- "http://$host:$port" < Date: Sat, 13 Aug 2011 15:42:28 +0200 Subject: cholerab cnot: add documentation --- cholerab/knut/clients/cnot/index | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cholerab/knut/clients/cnot') diff --git a/cholerab/knut/clients/cnot/index b/cholerab/knut/clients/cnot/index index a9e4972d..d17329f4 100755 --- a/cholerab/knut/clients/cnot/index +++ b/cholerab/knut/clients/cnot/index @@ -1,6 +1,8 @@ #! /bin/sh # +# cnot - cholerab live command line notification client, bitch! # +# usage: cnot hostname message... # set -euf -- cgit v1.2.3 From c36f72a019abcd22fca3dc550e1a239c1d161f1f Mon Sep 17 00:00:00 2001 From: tv Date: Sat, 13 Aug 2011 15:49:43 +0200 Subject: cholerab cnot: be verbose on demand only --- cholerab/knut/clients/cnot/index | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'cholerab/knut/clients/cnot') diff --git a/cholerab/knut/clients/cnot/index b/cholerab/knut/clients/cnot/index index d17329f4..f276dd25 100755 --- a/cholerab/knut/clients/cnot/index +++ b/cholerab/knut/clients/cnot/index @@ -2,7 +2,7 @@ # # cnot - cholerab live command line notification client, bitch! # -# usage: cnot hostname message... +# usage: [verbose=yes] cnot hostname [message...] # set -euf @@ -11,6 +11,12 @@ port=42101 params="$*" -exec curl -vsS -X PUT --data-binary @- "http://$host:$port" <