prefix.pl (c95baf12f5077419db01313ab61c2aac007d40cd) | prefix.pl (c25ce589dca10d64dde139ae093abc258a32869c) |
---|---|
1#!/usr/bin/perl | 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". 5use strict; 6use IO::Handle; 7 8binmode STDIN; 9binmode STDOUT; --- 15 unchanged lines hidden --- | 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". 5use strict; 6use IO::Handle; 7 8binmode STDIN; 9binmode STDOUT; --- 15 unchanged lines hidden --- |