/**
  * Executer une commande.
  * @param string $cmdText La commande.
  * @param Terminal $terminal Le terminal ou exeuter la commande.
  */
 public function execute($cmdText, $terminal)
 {
     $cmd = new Cmd($this->webos, $this->webos->getAuthorization(), $cmdText, $terminal);
     $cmd->run();
 }