diff options
Diffstat (limited to 'unix/man/fixurls')
-rwxr-xr-x | unix/man/fixurls | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/man/fixurls b/unix/man/fixurls index e058b147..8c348477 100755 --- a/unix/man/fixurls +++ b/unix/man/fixurls @@ -24,7 +24,7 @@ for($i=0; $i<@ARGV; $i++){ } $text =~ s!../man(.)/([^.]*)\.html!$2$1.html!g; - $text =~ s!(http://swtch.com/plan9port/unix)!<a href="\1">\1</a>!g; + $text =~ s!(https://9fans.github.io/plan9port/unix)!<a href="\1">\1</a>!g; open(OUT, ">$ARGV[$i]") || die "open $ARGV[$i]: $!"; print OUT $text; |