Dumpfile
From Base de connaissances eggdrops & TCL
dumpfile: lit un fichier sur IRC
Syntaxe
dumpfile <nick> <filename>
Description
proc mydumpfile {nick file} {
set of [open "text/$file" "r"]
while {![eof $of]} {
puthelp "PRIVMSG $nick :[gets $of]"
}
close $of
return 0
}