setName('xtask:query')->setDescription('[控制]查询正在执行的所有任务进程'); } /** * 执行相关进程查询 * @param Input $input * @param Output $output * @return int|void|null */ protected function execute(Input $input, Output $output) { $this->cmd = "{$this->bin} xtask:"; if (count($this->queryProcess()) < 1) { $output->writeln('没有查询到相关任务进程'); } else foreach ($this->queryProcess() as $item) { $output->writeln("{$item['pid']}\t{$item['cmd']}"); } } }