The Archives
-
01.21.09Perl autoflush$ perl -e '$|=1; while(<>){print "you entered: $_";}' Even though in the above code it is irrelevant, the $|=1 assignment makes all the output be unbuffered (auto-flushed). This is quite useful in sockets, network protocols and IPC.