summaryrefslogtreecommitdiff
path: root/shbrain.sh
diff options
context:
space:
mode:
authorVivia Nikolaidou2013-11-05 15:34:05 +0200
committerVivia Nikolaidou2013-11-05 15:41:52 +0200
commitf5faacf250d7c5da5c1e4ebe53d84d2bf788b72f (patch)
treea837a9597e0d2750db6f554bd561a18774f2e253 /shbrain.sh
parentAdded the quote module (diff)
downloadshbot-f5faacf250d7c5da5c1e4ebe53d84d2bf788b72f.tar.gz
shbot-f5faacf250d7c5da5c1e4ebe53d84d2bf788b72f.tar.bz2
shbot-f5faacf250d7c5da5c1e4ebe53d84d2bf788b72f.zip
Fix nickname and channel detection
* Nicknames were assumed to be in [A-Za-z] format. Just detecting a [^!] now as ! separates the nickname from the host. * Channels may start with two hashes, the previous regexp didn't recognize that.
Diffstat (limited to 'shbrain.sh')
-rwxr-xr-xshbrain.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/shbrain.sh b/shbrain.sh
index 06cad02..572bd10 100755
--- a/shbrain.sh
+++ b/shbrain.sh
@@ -8,7 +8,7 @@ do
LINE=${LINE[@]:0:$LEN}
### Parsing potential shcmd
- if [[ $LINE =~ :([a-zA-Z]*)!.*:shcmd ]]; then
+ if [[ $LINE =~ :([^!]*)!.*:shcmd ]]; then
EXPAND=(${LINE})
CMD=${EXPAND[4]#:}
ARGS=${EXPAND[*]:5}