10 lines
285 B
Bash
Executable file
10 lines
285 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Filter the output from Open Adventure versions to make it compatible with
|
|
# the filtered versions of logs made from advent430.
|
|
sed \
|
|
-e '/bridge now spans the fissure/s//bridge spans the fissure/' \
|
|
-e '/ground/s//surface/' \
|
|
-e '/floor/s//surface/' \
|
|
|
|
# end
|