我的下面的 cronjob 不起作用。我在这里做错了什么?
*/5 * * * * /usr/bin/top -n1 | head -10 >>/tmp/load.txt
答案1
Linux 上的from top
procps 至少需要$TERM
环境变量来知道如何在不处于批处理模式时显示反色和光标定位等内容
所以要么运行:
top -bn1 | head
或者:
TERM=dumb top -n1 | head
或者,如果您需要适合任何给定终端的输出,请将其指定为
TERM=my-terminal top -n1 | head