#! /bin/sh

DEFSR=22050
DHISR=44100
DLOSR=22050

for file
do
	sed \
		-e "s/DEFSR/$DEFSR/" \
		-e "s/DHISR/$DHISR/" \
		-e "s/DLOSR/$DLOSR/"\
		${file} > /tmp/sed${$}
	mv /tmp/sed${$} ${file}
done
