setName('log:watch'); $this->setDescription('Outputs the last parts of the log files and follows as the log file grows. Does not work on Windows'); } protected function execute(InputInterface $input, OutputInterface $output) { $path = StaticContainer::get('path.tmp') . '/logs/'; $cmd = sprintf('tail -f %s*.log', $path); $output->writeln('Executing command: ' . $cmd); passthru($cmd); } }