Files
zira-etc/multitail/convert-simple.pl
2021-05-24 22:18:33 +03:00

11 lines
137 B
Perl

#!/usr/bin/perl
# disable I/O buffering (this is essential)
$| = 1;
while(<>)
{
# add 'bla' in front of the string
print "bla".$_;
}