summaryrefslogtreecommitdiffstats
path: root/file.tcl
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2011-08-16 10:51:41 +0200
committerStefan Ritter <xeno@thehappy.de>2011-08-16 10:51:41 +0200
commitba46c304bdffdce0b6019a47f6759ce6abbeef90 (patch)
tree40a5b204637cb65c5bb91bd4f26a248ea498e019 /file.tcl
Initial commit
Diffstat (limited to 'file.tcl')
-rw-r--r--file.tcl15
1 files changed, 15 insertions, 0 deletions
diff --git a/file.tcl b/file.tcl
new file mode 100644
index 0000000..cde8e03
--- /dev/null
+++ b/file.tcl
@@ -0,0 +1,15 @@
+bind pub - !filetype proc_file
+
+proc proc_file {nick host hand chan arg} {
+ set arg [string trim $arg]
+ if {$arg == ""} {
+ return 0
+ }
+
+ set output [split "[exec perl /home/eggdrop/eggdrop/scripts/file.pl $arg /home/eggdrop/eggdrop/scripts/fileextensions.txt X]" "\n"]
+ foreach out $output {
+ putserv "PRIVMSG $chan :$out"
+ }
+}
+
+putlog "filetype by lookshe loaded"