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) { $cmd = sprintf('tail -f %s/tmp/logs/*.log', PIWIK_DOCUMENT_ROOT); $output->writeln('Executing command: ' . $cmd); passthru($cmd); } }