Add dump_events.pl script
This commit is contained in:
parent
3375c39c02
commit
fbfa31d2d1
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/perl
|
||||
require ESL;
|
||||
|
||||
my $command = shift;
|
||||
my $args = join(" ", @ARGV);
|
||||
|
||||
my $con = new ESL::ESLconnection("localhost", "8021", "ClueCon");
|
||||
$con->events("plain","all");
|
||||
while ( $con->connected() ) {
|
||||
my $e = $con->recvEventTimed(0);
|
||||
print $e->serialize;
|
||||
}
|
Loading…
Reference in New Issue