. */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); $shortoptions = 'i:n:r:w:y'; $longoptions = array('id=', 'nickname=', 'remote=', 'password='); $helptext = <<nickname}' to $remote. Are you sure? [y/N] "; $response = fgets(STDIN); if (strtolower(trim($response)) != 'y') { print "Aborting.\n"; exit(0); } } $qm = QueueManager::get(); $qm->enqueue(array($user, $remote, $password), 'acctmove'); } catch (Exception $e) { print $e->getMessage()."\n"; exit(1); }