CmdSplit: Implemented 'split' command

This commit is contained in:
Paul Beckingham 2016-06-10 21:55:09 -04:00
parent 2a857c203d
commit 5e044bd845
4 changed files with 99 additions and 0 deletions

View file

@ -72,6 +72,7 @@ void initializeEntities (CLI& cli)
cli.entity ("command", "report");
cli.entity ("command", "shorten");
cli.entity ("command", "show");
cli.entity ("command", "split");
cli.entity ("command", "start");
cli.entity ("command", "stop");
cli.entity ("command", "tag");
@ -269,6 +270,7 @@ int dispatchCommand (
else if (command == "report") status = CmdReport (cli, rules, database, extensions);
else if (command == "shorten") status = CmdShorten (cli, rules, database );
else if (command == "show") status = CmdShow ( rules );
else if (command == "split") status = CmdSplit (cli, rules, database );
else if (command == "start") status = CmdStart (cli, rules, database );
else if (command == "stop") status = CmdStop (cli, rules, database );
else if (command == "summary") status = CmdSummary (cli, rules, database );