Entries from 2008-09-22 to 1 day

SVN::Clientで最終変更日時を取得する

SVN::Clientモジュールから最終変更日時を取得する #!/usr/bin/perl use strict; use warnings; use SVN::Client; my $ctx = new SVN::Client; $ctx->info("/hoge/fuga", undef, 'HEAD', sub { my ($path, $info, $pool) = @_; print $path, "\n"; print $in…