blob: 4da6d8736e8210a56bb19ccc2caf8321d6c68e5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
[ ! -r $OLD ] && mv $NEW $OLD
rm -f $NEW
}
config etc/angband/edit/artifact.txt.new
config etc/angband/edit/ego_item.txt.new
config etc/angband/edit/flavor.txt.new
config etc/angband/edit/hints.txt.new
config etc/angband/edit/limits.txt.new
config etc/angband/edit/monster.txt.new
config etc/angband/edit/monster_base.txt.new
config etc/angband/edit/names.txt.new
config etc/angband/edit/object.txt.new
config etc/angband/edit/object_base.txt.new
config etc/angband/edit/p_class.txt.new
config etc/angband/edit/p_hist.txt.new
config etc/angband/edit/p_race.txt.new
config etc/angband/edit/pain.txt.new
config etc/angband/edit/pit.txt.new
config etc/angband/edit/shop_own.txt.new
config etc/angband/edit/spell.txt.new
config etc/angband/edit/store.txt.new
config etc/angband/edit/terrain.txt.new
config etc/angband/edit/vault.txt.new
|