#!/bin/sh
#
# This script renames the *.n man pages in the tclmidi distribution
# to *.tclmidi3 to fit them into /usr/man/man3 with the other tcl
# manpages.
#
# written by Will Lowe <lowe@debian.org> 

for h in *.n; do g=${h%.*} ; mv $h $g.tclmidi3; done
