#!/usr/bin/env php . */ define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); $helptext = << Prints site information for the domain given END_OF_SITEFORDOMAIN_HELP; require_once INSTALLDIR.'/scripts/commandline.inc.php'; $domain = DomainStatusNetworkPlugin::toDomain($args[0]); $nickname = DomainStatusNetworkPlugin::nicknameForDomain($domain); if (empty($nickname)) { throw new ClientException('No candidate found.'); } else { print $nickname; print "\n"; }