Displaying 1 result from an estimated 1 matches for "b_dryrun".
2005 Apr 04
0
io timeout after 180 seconds
...Error: ' . $args->getMessage() . "\n");
}
$options = Console_Getopt::getopt($args, 'dhtr', array('debug',
'help', 'test', 'reinit'));
if (PEAR::isError($options)) {
~ die($options->getMessage() . "\n");
}
$b_debug = false;
$b_dryRun = false;
$b_cleanupDryRun = false;
$b_reinit = false;
$s_log = '';
$b_error = false;
foreach ($options[0] as $option) {
~ switch ($option[0]) {
~ case 'h':
~ case '--help':
~ showUsage($args[0]);
~ exit;
~ break;
~ ca...