#!/bin/sh

for file in *.html; do {
	echo $file
	cat $file | sed s+help:/common+./common+g > $file.new
	mv $file.new $file
} done
