open-adventure/tests/oldfilter
2023-03-22 14:48:49 -04:00

20 lines
474 B
Bash
Executable file

#!/bin/sh
#
# Filter the output from advent430 to make it compatible with
# newer ones
sed \
-e '/ *$/s///' \
-e '/bridge now spans the fissure/s//bridge spans the fissure/' \
-e '/imbedded/s//embedded/' \
-e '/persian/s//Persian/' \
-e '/swiss/s//Swiss/' \
-e '/eying/s//eyeing/' \
-e '/threshhold/s//threshold/' \
-e '/NAGGING/s//nagging/' \
-e '/DOING/s//doing/' \
-e '/SOMETHING/s//something/' \
-e '/EW/s//ew/' \
#end