http://qs321.pair.com?node_id=253528


in reply to peek - output a one-line preview of stdin

my $pad = ' ' x $wide; ... $_ = substr($_ . $pad, 0, $wide); print $_, "\r";
That can be written far more simply and efficiently as:
printf "%-${wide}.${wide}s\r", $_;

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.