forked from Mirrors/freeswitch
9 lines
171 B
Ruby
9 lines
171 B
Ruby
|
#! /usr/bin/ruby
|
||
|
|
||
|
require "ESL"
|
||
|
|
||
|
command = ARGV.join(" ")
|
||
|
con = ESL::ESLconnection.new("localhost", "8021", "ClueCon")
|
||
|
e = con.sendRecv("api #{command}")
|
||
|
puts e.getBody()
|