I usually run many programs from the same shell before using the watch command to monitor programs for completion. (I'm filtering the ps command a bit, but this example is simpler.)
sleep 10 && for i in {1..100}; do echo $i; done &
watch -n 5 ps aux
The watch command clears the terminal so that the command output is clean and there is no interference.

When another program prints, for example, echo expressions in the example, the result is a bit strange. It prints weirdly, and the results seem to depend on the size of the output. Although the watch must restart the ps aux command, it does not overwrite the output of the echo commands.

Is there something similar that would prevent other programs from being released to cover the weekend?
watch -n 5 ClearScreenSomehow && ps aux
source
share