I am looking at some old code in Perl, where the author has writtern
$| = 1
in the first line.
But the code does not have any print statements, it calls a C++ binary using the system
command. Now I read that $|
will force flush after every print. So does it affect the system command's output in any way or am I safe to remove that line.
Thanks Arvind