Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 5f6ac072f5c7b04ec5fecf47056bb0ee > files > 4

multitail-6.4.2-3.mga7.armv7hl.rpm

#!/usr/bin/perl

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

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