Typo fix.
[open-adventure.git] / tests / newfilter
1 #!/bin/sh
2 #
3 # Filter the output from Open Adventure versions to make it compatible with
4 # the filtered versions of logs made from advent430.
5 sed \
6     -e '/bridge now spans the fissure/s//bridge spans the fissure/' \
7     -e '/ground/s//surface/' \
8     -e '/floor/s//surface/' \
9     -e "/Well, that was remarkably pointless!/s//What's the matter, can't you read?  Now you'd best start over./" \
10
11 # end