Initial commit.
This commit is contained in:
10
multitail/convert-simple.pl
Normal file
10
multitail/convert-simple.pl
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# disable I/O buffering (this is essential)
|
||||
$| = 1;
|
||||
|
||||
while(<>)
|
||||
{
|
||||
# add 'bla' in front of the string
|
||||
print "bla".$_;
|
||||
}
|
||||
Reference in New Issue
Block a user