我正在编写一个 Windows 脚本,当我在 irc 频道上收到 [COMPLETE] 行时,该脚本应执行 debian .sh 脚本。但无法弄清楚在 irc 脚本中将该行放在哪里。
所以如果可以删除 sock 内容并在线使用 plink,也许效果会更好。现在使用该脚本,我没有得到任何东西。
on *:start:{
window @somestuff
}
on *:TEXT:*:#CHAN: {
if ($strip($2) == [COMPLETE]) && (*/* !iswm $strip($3)) {
var %xxx $remove($strip($1),[,])
var %xxx $strip($3)
x %xxxx %rls
aline @somestuff $strip($1-)
}
}
alias x {
var %autosockname $+(x.,$strip($2),.,$ctime)
sockopen -e %autosockname IP ADRESS 443
sockmark %autosockname $strip($remove($upper($1),[,])) $2
}
on *:sockopen:x.*:{
if ($sockerr) { sockclose $sockname | halt }
sockwrite -n $sockname GET /auto.php?fullpath=/path/to/file/ $+ $gettok($sock($sockname).mark,1,32) $+ / $+ $gettok($sock($sockname).mark,2,32) $+ &file= $+ $gettok($sock($sockname).mark,2,32) HTTP/1.0
sockwrite -n $sockname Host: IP ADRESS
sockwrite -n $sockname
}
on *:sockread:auto.*:{
var %auto
sockread %auto
if ([Auto] isin %auto || [Autofail] isin %auto) {
msg #CHAN %auto
}
if (</html> isin %auto) {
sockclose $sockname }
}