cards/qml/cards/images/getem.sh
author John Kern <johnk@symbian.org>
Mon, 25 Oct 2010 10:35:32 -0700
changeset 3 2e16639599b7
permissions -rw-r--r--
flipping cards example
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     1
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     2
clubs_cards="nicubunu_White_deck_8_of_clubs.svg nicubunu_White_deck_10_of_clubs.svg  nicubunu_White_deck_9_of_clubs.svg nicubunu_White_deck_2_of_clubs.svg   nicubunu_White_deck_Ace_of_clubs.svg nicubunu_White_deck_3_of_clubs.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_clubs.svg   nicubunu_White_deck_Jack_of_clubs.svg nicubunu_White_deck_5_of_clubs.svg   nicubunu_White_deck_King_of_clubs.svg nicubunu_White_deck_6_of_clubs.svg   nicubunu_White_deck_Queen_of_clubs.svg nicubunu_White_deck_7_of_clubs.svg"
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     3
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     4
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     5
diamonds_cards="nicubunu_White_deck_8_of_diamonds.svg nicubunu_White_deck_10_of_diamonds.svg  nicubunu_White_deck_9_of_diamonds.svg nicubunu_White_deck_2_of_diamonds.svg   nicubunu_White_deck_Ace_of_diamonds.svg nicubunu_White_deck_3_of_diamonds.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_diamonds.svg   nicubunu_White_deck_Jack_of_diamonds.svg nicubunu_White_deck_5_of_diamonds.svg   nicubunu_White_deck_King_of_diamonds.svg nicubunu_White_deck_6_of_diamonds.svg   nicubunu_White_deck_Queen_of_diamonds.svg nicubunu_White_deck_7_of_diamonds.svg"
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     6
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     7
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     8
hearts_cards="nicubunu_White_deck_8_of_hearts.svg nicubunu_White_deck_10_of_hearts.svg  nicubunu_White_deck_9_of_hearts.svg nicubunu_White_deck_2_of_hearts.svg   nicubunu_White_deck_Ace_of_hearts.svg nicubunu_White_deck_3_of_hearts.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_hearts.svg   nicubunu_White_deck_Jack_of_hearts.svg nicubunu_White_deck_5_of_hearts.svg   nicubunu_White_deck_King_of_hearts.svg nicubunu_White_deck_6_of_hearts.svg   nicubunu_White_deck_Queen_of_hearts.svg nicubunu_White_deck_7_of_hearts.svg"
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
     9
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    10
spades_cards="nicubunu_White_deck_8_of_spades.svg nicubunu_White_deck_10_of_spades.svg  nicubunu_White_deck_9_of_spades.svg nicubunu_White_deck_2_of_spades.svg   nicubunu_White_deck_Ace_of_spades.svg nicubunu_White_deck_3_of_spades.svg   nicubunu_White_deck_Black_Joker.svg nicubunu_White_deck_4_of_spades.svg   nicubunu_White_deck_Jack_of_spades.svg nicubunu_White_deck_5_of_spades.svg   nicubunu_White_deck_King_of_spades.svg nicubunu_White_deck_6_of_spades.svg   nicubunu_White_deck_Queen_of_spades.svg nicubunu_White_deck_7_of_spades.svg"
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    11
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    12
for d in $clubs_cards $diamonds_cards $hearts_cards $spades_cards
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    13
do
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    14
	echo "$d"
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    15
	# curl http://www.openclipart.org/people/nicubunu/$d > $d
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    16
	
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    17
	
2e16639599b7 flipping cards example
John Kern <johnk@symbian.org>
parents:
diff changeset
    18
done