Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个终端上有一个 php (cli) 脚本。它不断地回显 mysql 调用等。有什么方法可以看到另一个终端的输出,以便我可以监控该脚本的进度?
谢谢
你可以
使用终端多路复用器或
修改您的 PHP 脚本以将所有输出写入日志文件,或者
管道stdout和/或stderr日志文件(例如:)php myscript.php > output.log。如果您使用日志文件,您可以使用tail -f output.log.
stdout
stderr
php myscript.php > output.log
tail -f output.log