Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 185b93eebd1d89fb06c8d6ac23858448 > files > 8

multitail-5.2.6-1.fc14.x86_64.rpm

#!/usr/bin/perl

# disable I/O buffering (this is essential)
$| = 1;

while(<>)
{
	# add 'bla' in front of the string
	print "bla".$_;
}