"explode" all modpacks into their individual components

(you can't have a modpack buried inside a modpack)
This commit is contained in:
Vanessa Ezekowitz
2016-04-01 21:00:20 -04:00
parent da66780a56
commit 888b0ebfec
3279 changed files with 21 additions and 4769 deletions

13
homedecor/listnodes.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
echo "Node listing as of "`date` > nodes.txt
for i in *.lua; do
echo -e "\nIn $i:\n" >> nodes.txt
cat $i | grep "minetest.register_node(" | \
sed "s/minetest.register_node(.homedecor:/homedecor:/; s/., {//" | \
sort >> nodes.txt
done
less nodes.txt
rm -f nodes.txt