mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
3f1aeb3aef
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@61 ea6a568a-9f4f-0410-981a-c910a81bb256
7 lines
128 B
Bash
Executable File
7 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for a in $(find -iname \*.d); do
|
|
cat "$a" | sed s/monster.minibos./std./g > "$a"_new
|
|
mv "$a"_new "$a"
|
|
done
|