Suppose I have a program that prints a large number of messages to stdout, which takes much time. I wonder whether by redirecting the stdout to /dev/null (so that I see no messages in the screen) we can make the program terminate faster?
[Edit] I tries with small examples. Redirecting stdout to /dev/null does make program terminate earlier.