repo.or.cz
/
sunny256-utils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
perlmodules.t: Remove Module::Starter and Module::Starter::Plugin::CGIApp
[sunny256-utils.git]
/
pakkut
blob
6e48a788d4de19fb0342b9201aeeab1d8b69f944
1
#!/usr/bin/env perl
2
3
# pakkut
4
# File ID: 096d3c90-5d42-11df-a6c3-90e6ba3022ac
5
6
use
strict
;
7
use
warnings
;
8
9
$| =
1
;
10
11
open
(
PipeFP
,
"| uudecode | gzip -d"
)
or die
(
"
$0
: Can't open pipe: $!
\n
"
);
12
while
(<>) {
13
s/[#%";!{}]//g
;
14
s/^\s+(.*)/$1/
;
15
print
PipeFP
$_
;
16
}
17
18
close
(
PipeFP
);