diff options
author | Julien Dessaux | 2013-11-05 23:35:44 +0100 |
---|---|---|
committer | Julien Dessaux | 2013-11-05 23:35:44 +0100 |
commit | 1559173ef9527ce5470a5737816787c87521ee07 (patch) | |
tree | ac28aca5cf6ecdad409fd6cf9708b0cdab9cf20e | |
parent | Fixed file permissions (diff) | |
download | shbot-1559173ef9527ce5470a5737816787c87521ee07.tar.gz shbot-1559173ef9527ce5470a5737816787c87521ee07.tar.bz2 shbot-1559173ef9527ce5470a5737816787c87521ee07.zip |
Added help message for duck command
Diffstat (limited to '')
-rw-r--r-- | shhelp.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,8 +1,11 @@ -#!/bin/bash -ex +#!/usr/bin/env bash +set -e case "$1" in "advert") echo "advert <CHANNEL> : Make shbot speak the truth about himself on the specified CHANNEL." ;; + "duck") echo "help <TOPIC> : Prints a cute duck." + ;; "help") echo "help <TOPIC> : Prints help about TOPIC." ;; "join") echo "join <CHANNEL> : Make shbot join the specified CHANNEL." |