22 lines
535 B
Bash
Executable file
22 lines
535 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/' \
|
|
-e '/ground/s//surface/' \
|
|
-e '/floor/s//surface/' \
|
|
|
|
|
|
#end
|
|
|