轮询/监控 Linux 命令的输出

轮询/监控 Linux 命令的输出

有没有办法可以监视 Linux 命令的输出,而不必一遍又一遍地输入它。

我想做类似的事情:

tail -f file.txt

但是对于像这样的命令:

ps aux | grep httpd | wc

谢谢!

答案1

watch 'ps aux | grep httpd | wc'

答案2

while true
do
  ps aux | grep httpd | wc
  sleep 10
done

相关内容