File: convert-simple.pl

package info (click to toggle)
multitail 7.1.5-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 884 kB
  • sloc: ansic: 14,945; makefile: 119; sh: 28; perl: 25
file content (10 lines) | stat: -rwxr-xr-x 137 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

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

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