Files
wagic/projects/mtg/tools/miki/getSupportedCardNames.bash
2011-02-04 13:41:24 +00:00

18 lines
838 B
Bash
Executable File

#!/bin/bash
####################################################
# adjust the values for mtg.txt and borderline.txt
# if your "Res" directory isn't in the default place
####################################################
####################################################
# Purpose: build an HTML list of all the supported
# cards in Wagic for use in the Miki.
# http://wololo.net/.
####################################################
grep '^name=' ../../bin/Res/sets/primitives/mtg.txt ../../bin/Res/sets/primitives/borderline.txt|sed s/name=// | sed s/.*txt:// |sort -iu > supported_cards.txt
grep '^name=' ../../bin/Res/sets/mtg_todo.dat |sed s/name=// | sed s/.*txt:// |sort -iu > todo_cards.txt
perl createHTMLList_SupportedCards.pl -i supported_cards.txt
perl createHTMLList_SupportedCards.pl -i todo_cards.txt -t todo