tagline copied from mail Reviewed by: epriestley See: <https://github.com/facebook/phabricator/pull/446>
		
			
				
	
	
		
			23 lines
		
	
	
		
			494 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			494 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
$root = dirname(dirname(dirname(__FILE__)));
 | 
						|
require_once $root.'/scripts/__init_script__.php';
 | 
						|
 | 
						|
$args = new PhutilArgumentParser($argv);
 | 
						|
$args->setTagline('manage cache');
 | 
						|
$args->setSynopsis(<<<EOSYNOPSIS
 | 
						|
**cache** __command__ [__options__]
 | 
						|
    Manage Phabricator caches.
 | 
						|
 | 
						|
EOSYNOPSIS
 | 
						|
  );
 | 
						|
$args->parseStandardArguments();
 | 
						|
 | 
						|
$workflows = array(
 | 
						|
  new PhabricatorCacheManagementPurgeWorkflow(),
 | 
						|
  new PhutilHelpArgumentWorkflow(),
 | 
						|
);
 | 
						|
 | 
						|
$args->parseWorkflows($workflows);
 |