mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-04 03:40:14 +00:00
7 lines
128 B
Bash
7 lines
128 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for a in $(find -iname \*.d); do
|
||
|
cat "$a" | sed s/monster.minibos./std./g > "$a"_new
|
||
|
mv "$a"_new "$a"
|
||
|
done
|