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