diff options
author | Momo <momorientes@online.de> | 2011-08-25 20:26:13 +0200 |
---|---|---|
committer | Momo <momorientes@online.de> | 2011-08-25 20:26:13 +0200 |
commit | 0a49508c68e83344ba58a6dd8f76b75677dee40e (patch) | |
tree | aa071f2c614a5978f9742bc733808f98333293ac /licht | |
parent | e7f09d7285672763b836f20881cb2248d85ed606 (diff) |
initial vommit
Diffstat (limited to 'licht')
-rw-r--r-- | licht/licht.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/licht/licht.sh b/licht/licht.sh new file mode 100644 index 00000000..d73a73c8 --- /dev/null +++ b/licht/licht.sh @@ -0,0 +1,13 @@ +#!/bin/bash +LAMPE="$1" +TOGGLE="$2" +LAMP=~s/[a-zA-Z]//g +TOGGLE=~s/[a-zA-Z]//g +STRING="\xA5\x5A\d$LAMPE\d$TOGGLE" +if [ $# != 2 ] +then + echo -ne "Usage: licht <lampe> <0/1>" +else + echo "$LAMPE$TOGGLE" + echo -ne "$STRING" | nc -u -w1 10.42.3.100 1337 +fi |