Mercurial > hg > Game > Cerium
view bin/get_xml_image.pl @ 1544:5c4e3f0d372a draft
many_task add task array
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 31 Jan 2013 18:47:13 +0900 |
parents | 3e1caef39798 |
children |
line wrap: on
line source
#!/usr/bin/perl use MIME::Base64; my $image; my $buf; while(<>) { if (/<image name="(.*)">/) { $image= $1; $buf = ''; } elsif (/<\/image>/ ) { open(OUT, ">/tmp/$image") ; print OUT decode_base64($buf); $image = ''; } elsif ($image) { $buf .= $_; } }