diff options
-rwxr-xr-x | handler/hello | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/handler/hello b/handler/hello new file mode 100755 index 0000000..92e1aa1 --- /dev/null +++ b/handler/hello @@ -0,0 +1,9 @@ +#!/bin/sh + +# call me with broadcaster $bcat-ip hello world + +LOGFILE="./hello.log" + +echo "Someone called 'hello $1'!" >> "$LOGFILE" + + |