我怎样才能看到 shell 脚本正在做什么?

我怎样才能看到 shell 脚本正在做什么?

在 Windows 中,我可以在控制台上看到服务器正在运行。我可以看到是否有错误或正在加载什么等等。但在 Ubuntu 服务器中,我如何才能从终端看到服务器正在做什么?

我正在运行一个.sh文件。我可以看到它正在运行,但我不知道它在做什么,或者是否有错误。

顺便说一句,我正在使用 xampp。

在此处输入图片描述

答案1

您需要的命令是tail -f

tail -f /var/log/apache2/access.log
tail -f /var/log/apache2/error.log
tail -f /var/log/syslog

由于我看到lampp这里提到,位置可能位于/opt/lampp/logs/php_error_log

tail -f /opt/lampp/logs/php_error_log
tail -f /opt/lampp/logs/error_log
tail -f /opt/lampp/logs/access_log

相关内容