#!/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'; $domain = DomainStatusNetworkPlugin::toDomain($args[0]); $sn = DomainStatusNetworkPlugin::siteForDomain($domain); if (empty($sn)) { exit(1); } print $sn->nickname."\n"; exit(0);