Dolda2000 GitWeb
/
doldaconnect.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Clarified the dscp-tos documentation a bit.
[doldaconnect.git]
/
clients
/
gaim
/
mksrc
Commit
Line
Data
34ec1e2f
FT
1
#!/usr/bin/perl -w
2
3
defined ($bn = $ARGV[0]) || die "no basename given";
4
5
while(<STDIN>) {
6
s,G/PC,\u$bn,g;
7
s,G/PU,\U$bn\E,g;
8
s,G/P,$bn,g;
9
print;
10
}