aboutsummaryrefslogtreecommitdiff
path: root/unix/man/fixurls
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2017-09-01 13:16:43 -0400
committerRuss Cox <rsc@swtch.com>2017-09-01 13:25:20 -0400
commita39938859387987d5aac6201600154a68fad7c40 (patch)
tree19f70a476a063279c5d7cb23ea327fba34841431 /unix/man/fixurls
parent6cb3a2b9c3cf191c613985fc893c8a88a9b6d76f (diff)
downloadplan9port-a39938859387987d5aac6201600154a68fad7c40.tar.gz
plan9port-a39938859387987d5aac6201600154a68fad7c40.tar.bz2
plan9port-a39938859387987d5aac6201600154a68fad7c40.zip
all: update site from swtch.com to 9fans.github.io
Diffstat (limited to 'unix/man/fixurls')
-rwxr-xr-xunix/man/fixurls2
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;