Mercurial > eagle-eye
view enemy.pl @ 17:5ea88404dc74
ignore temp file.
author | "Rex Tsai <chihchun@kalug.linux.org.tw>" |
---|---|
date | Wed, 08 Oct 2008 15:25:48 +0800 |
parents | e4b3168d0319 |
children | fd44e3a1f800 |
line wrap: on
line source
#!/usr/bin/perl use strict; use Ikariam; use Data::Dumper; package main; if($#ARGV != 0) { die("Usage: $0 nickname\n"); } Ikariam::User->has_many(cities => 'Ikariam::Cities'); my ($u) = Ikariam::User->search('name' => $ARGV[0]); if(defined($u)) { print Dumper($u->_data_hash); foreach my $c ($u->cities) { print Dumper($c->_data_hash); } }