Created
March 14, 2013 04:10
-
-
Save holysugar/5158733 to your computer and use it in GitHub Desktop.
~/bin/sasami
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # ikachan wrapper | |
| ikachan=http://IKACHANHOST:4979 | |
| if [ -z "$2" ]; then | |
| echo "Usage: $0 channel message" | |
| fi | |
| channel=$(echo $1 | sed -E 's/^[^0-9A-Za-z_]/#/') | |
| message=$2 | |
| curl -F "channel=$channel" -F "message=$message" $ikachan/notice |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment