mud/
mud/2.4.5/dgd/include/
mud/2.4.5/dgd/std/
mud/2.4.5/dgd/sys/
mud/2.4.5/doc/
mud/2.4.5/doc/examples/
mud/2.4.5/log/
mud/2.4.5/obj/Go/
mud/2.4.5/players/
mud/2.4.5/players/lars/
mud/2.4.5/room/death/
mud/2.4.5/room/maze1/
mud/2.4.5/room/post_dir/
mud/2.4.5/room/sub/
Substitutions are very advanced.

First a simple example:

s/apa/bepa/
This will substitue the 'apa' in current line to 'bepa'.
If an 'p' is appended, you will also immediately see the result.

1,$s/apa/bepa/
Same, but all lines in file. Only first occurence on every line.

Any character can used instead of '/':
s!apa!bepa!g
The 'g' specifies that all occurences of apa on this line are changed to bepa.

The pattern that are supposed to be replaced, can be a regular expression.
See ed3 about that.