in reply to Redirecting perl output on the command line
#!/usr/bin/perl -w use strict; $| = 1; print "Begin...\n"; for ( my $i = 0; $i < 5; $i++ ) { print "$i...\n"; sleep 2; } [download]