repo.or.cz
/
hband-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP: uniproc
[hband-tools.git]
/
user-tools
/
pfxln
blob
1e154a842d78748fba00ffc9a0bc2e2b262e08cd
1
#!/usr/bin/env perl
2
3
=pod
4
5
=head1 NAME
6
7
pfxln - Prefix lines from STDIN
8
9
=head1 SYNOPSIS
10
11
pfxln [I<PREFIX>]
12
13
=cut
14
15
16
$pfx
=
$ARGV
[
0
]
//
"
\t
"
;
17
18
while
(<
STDIN
>)
19
{
20
print
"
$pfx
$_
"
;
21
}