aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-06-19 11:43:22 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2015-06-19 11:43:22 +0200
commita1ca72940008a4d47361c897a226eb873b117d7d (patch)
treece6edeeaa28a16111d64f5f571459ccf397d52a3 /README.md
parent4b5d98fbe78d6ba9057807e5384d49c3c427cf61 (diff)
downloadsircbot-a1ca72940008a4d47361c897a226eb873b117d7d.tar.bz2
sircbot-a1ca72940008a4d47361c897a226eb873b117d7d.tar.xz
readme: move to markdown
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..cebf749
--- /dev/null
+++ b/README.md
@@ -0,0 +1,24 @@
+sircbot
+=======
+
+a small IRC bot for use with git hooks, cronjobs, scripts etc
+
+
+
+start the server with:
+ sircbot -s SERVER -n NICK '#channel1' '#channel2'
+
+It connects to server and joins given channels. When a channel is joined
+it creates a unix socket /var/run/sircbot/<#channel> which can connected to
+with sircbot-send.
+
+To send to a connected channel use:
+
+ echo "$message" | sircbot-send '#channel1'
+
+sircbot-send will send everything from stdin to given channel.
+
+For every message that goes to the channel, sircbot will run all scripts in
+/etc/sircbot.d/<#channel>/ with sender, message and channel name as arguments.
+
+