27 lines
		
	
	
		
			631 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			631 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: strict
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| require "abstract_command"
 | |
| require "cleanup"
 | |
| 
 | |
| module Homebrew
 | |
|   module Cmd
 | |
|     class Autoremove < AbstractCommand
 | |
|       cmd_args do
 | |
|         description <<~EOS
 | |
|           Uninstall formulae that were only installed as a dependency of another formula and are now no longer needed.
 | |
|         EOS
 | |
|         switch "-n", "--dry-run",
 | |
|                description: "List what would be uninstalled, but do not actually uninstall anything."
 | |
| 
 | |
|         named_args :none
 | |
|       end
 | |
| 
 | |
|       sig { override.void }
 | |
|       def run
 | |
|         Cleanup.autoremove(dry_run: args.dry_run?)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
