Javascript Misc system
From FreeSWITCH Wiki
Contents |
Description
Executes an external command.
Synopsis
var return_code = system( command );
Output of the command is not returned. If you need to send or recieve output from the command, see the File object.
Example
system("create_account");

