Script::Ichigeki - Perl extension for one time script.
This document describes Script::Ichigeki version 0.04.
use Script::Ichigeki;
It is same as
use Script::Ichigeki (
exec_date => 'XXXX-XX-XX', # today
confirm_dialog => 1,
dialog_message => 'Do you really execute `%s` ?',
);
or
use Script::Ichigeki ();
Script::Ichigeki->hissatsu(
exec_date => 'XXXX-XX-XX', # today
confirm_dialog => 1,
dialog_message => 'Do you really execute `%s` ?',
);
Script::Ichigeki is the module for one time script for mission critical (especially for preventing rerunning it).
Only describing `use Script::Ichigeki`, confirm dialog is displayed and execution result is saved in log file automatically. This log file double with lock file for mutual exclusion and preventing rerunning.
THE SOFTWARE IS IT'S IN ALPHA QUALITY. IT MAY CHANGE THE API WITHOUT NOTICE.
If forking in your script, the software may not be properly handling it.
Automatically called in use phase.
Available options are:
Date for execution date. Format is '%Y-%m-%d'.
Confirm dialog is to be displayed or not. default: 1
Message of confirm dialog.
Script name is expanded to '%s'.
If using multibyte strings, you should $ use utf8;
before $ use Script::Ichigeki
.
default: 'Do you really execute `%s` ?',
Perl 5.8.1 or later.
All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.
Masayuki Matsuki y.songmu@gmail.com
Copyright (c) 2012, Masayuki Matsuki. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.