all: update site from swtch.com to 9fans.github.io

This commit is contained in:
Russ Cox 2017-09-01 13:16:43 -04:00
parent 6cb3a2b9c3
commit a399388593
26 changed files with 83 additions and 52 deletions

View file

@ -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;