So I have two files, and if a new line appears on either of these files, I'd like to receive an IM (preferably jabber or gTalk) containing the contents of that line. Do you guys have any suggestions for a Linux daemon or something that could do that?
If you are logging trough syslog, Metalog has support to execute a command whenever a message matching some criterion gets logged. Otherwise, you can use
tailf
to watch for new lines in a log file.sendxmpp is a small perl script to send XMPP messages (possibly already available as a package for your favorite distribution)
You could stitch those two together with a shell script without too much difficulty. For the metalog case, create a script like this one:
And add
command = /path/to/script.sh
to the relevant section of metalog.confFor the tailf case, you could try something like this, run in a persistent way:
sendxmpp needs a valid XMPP account, see the man page for how to configure the account to be used.
(from my experience, XMPP-delivered error messages tend to become quite annoying if they're too frequent...)
I made that little python script. You can use it as a starting point
I used information on that page for connecting xmpppy to Google Talk.