Back to top


NAME

 UpdateChecker::Command -- to check the result of command is whether updated or not from previous execute.

Back to top


SYNOPSIS

 # create object
 $uc = new updatechecker::command({data => $store, target_data => $hash_ref_or_file_name, option => ...}, $command);

Back to top


DESCRIPTION

UpdateChecker for command.

Back to top


CONSTRACTOR

new
  $uc = new UpdateChecker::Command({data => $store, target_data => $hash_ref_or_file_name, option => ...}, $command);

The last argument, $command, is optional. It is as same as;

 $uc = new UpdateChecker::Command({data => 'File', target_data => 'hoge.dat'});
 $uc->target('some command');

Back to top


METHODS

All default methods of UpdateChecker is enable and you can use these by default usage.

Back to top


SEE ALSO

  UpdateChecker, UpdateChecker::Data

Back to top


AUTHOR

 Ktat <ktat.is at gmail.com>

Back to top


COPYRIGHT

 Copyright 2003 by Kato Atsushi <ktat.is at gmail.com>.
 This program is free software; you can redistribute it
 and/or modify it under the same terms as Perl itself.
 See http://www.perl.com/perl/misc/Artistic.html

Back to top