WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / kselftest / prefix.pl
blob12a7f4ca2684d07c7464380527e7dbee91d40f0f
1 #!/usr/bin/env perl
2 # SPDX-License-Identifier: GPL-2.0
3 # Prefix all lines with "# ", unbuffered. Command being piped in may need
4 # to have unbuffering forced with "stdbuf -i0 -o0 -e0 $cmd".
5 use strict;
6 use IO::Handle;
8 binmode STDIN;
9 binmode STDOUT;
11 STDOUT->autoflush(1);
13 my $needed = 1;
14 while (1) {
15 my $char;
16 my $bytes = sysread(STDIN, $char, 1);
17 exit 0 if ($bytes == 0);
18 if ($needed) {
19 print "# ";
20 $needed = 0;
22 print $char;
23 $needed = 1 if ($char eq "\n");