当执行watch命令检查一堆错误时,当达到一定数量的行时,窗口无法显示其余的错误。我希望能够看到使用 watch 命令生成的所有行,我该怎么做?
答案1
手册watch
明确指出:
watch 重复运行命令,显示其输出(第一个全屏)。
因此,如果这不是您想要的,请不要使用watch
.
或者,使用(在 bash 中):
while :; do
clear
# The command that you want to use to view
sleep 2 # 2 secs is the default for watch
done