01
2021-12-17
jrmu
================================================================================
03
2021-12-17
jrmu
Creating a News Bot
05
2021-12-17
jrmu
In our third lesson, we'll create an IRC bot that reads the news.
07
2021-12-17
jrmu
Copy the code for rssbot.pl to your home folder:
09
2021-12-17
jrmu
$ cp rssbot.pl ~/rssbot.pl
11
2021-12-17
jrmu
Next, open up rssbot.pl using a text editor and make a few changes.
13
2021-12-17
jrmu
1. Edit the server in line 32. Replace irc.example.com with the server's
14
2021-12-17
jrmu
real address. NOTE: Only IPv4 is supported.
15
2021-12-17
jrmu
2. Edit line 35 to replace nickname with the nickname you want for the bot.
16
2021-12-17
jrmu
WARNING: The nickname must not already be taken, or else the bot will
17
2021-12-17
jrmu
fail to connect.
18
2021-12-17
jrmu
3. Edit line 36 to replace username with the username you want for the bot.
19
2021-12-17
jrmu
The username is what appears in a /whois on IRC; it can be different
20
2021-12-17
jrmu
from the nickname.
22
2021-12-17
jrmu
Next, you'll want to make the perl script executable:
24
2021-12-17
jrmu
$ chmod u+x ~/rssbot.pl
26
2021-12-17
jrmu
Then run the script:
28
2021-12-17
jrmu
$ perl ~/rssbot.pl
30
2021-12-17
jrmu
On IRC, /join #perl103
32
2021-12-17
jrmu
Type !rss and the bot will show you the latest updates to the
33
2021-12-17
jrmu
IRCNow Almanack.
35
2021-12-17
jrmu
================================================================================
37
2021-12-17
jrmu
Understanding RSSBot
39
2021-12-17
jrmu
Next, take a look at the file called ~/comments to see an explanation of
40
2021-12-17
jrmu
key lines in the program RSSBot.
42
2021-12-17
jrmu
================================================================================