diff options
author | rsc <devnull@localhost> | 2005-01-16 21:29:17 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-16 21:29:17 +0000 |
commit | 132fddd31c2e8b83ab3f0aa63ee2b1bcdd7bb624 (patch) | |
tree | 6bcbea8227f2dab5d34b02a3fa7325e131fd7d95 /dist/fixurls | |
parent | 10f14b04f31487f02f9fa7ac8d7d633683edaa65 (diff) | |
download | plan9port-132fddd31c2e8b83ab3f0aa63ee2b1bcdd7bb624.tar.gz plan9port-132fddd31c2e8b83ab3f0aa63ee2b1bcdd7bb624.tar.bz2 plan9port-132fddd31c2e8b83ab3f0aa63ee2b1bcdd7bb624.zip |
dregs from unix
Diffstat (limited to 'dist/fixurls')
-rwxr-xr-x | dist/fixurls | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/dist/fixurls b/dist/fixurls index c9beba82..cb8b9b64 100755 --- a/dist/fixurls +++ b/dist/fixurls @@ -23,9 +23,6 @@ for($i=0; $i<@ARGV; $i++){ noref($1, $2); } - $text =~ s!../man(.)/([^.]*)\.html!$2$1.html!g; - $text =~ s!(http://swtch.com/plan9port/unix)!<a href="\1">\1</a>!g; - open(OUT, ">$ARGV[$i]") || die "open $ARGV[$i]: $!"; print OUT $text; close OUT; |