mirror of
				https://github.com/ohmybash/oh-my-bash.git
				synced 2024-05-11 05:55:37 +00:00 
			
		
		
		
	* Ansible plugin added * kubectl plugin added * NPM Plugin added * brew plugin added * shebang added
		
			
				
	
	
		
			10 lines
		
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
alias brewp='brew pin'
 | 
						|
alias brews='brew list -1'
 | 
						|
alias brewsp='brew list --pinned'
 | 
						|
alias bubo='brew update && brew outdated'
 | 
						|
alias bubc='brew upgrade && brew cleanup'
 | 
						|
alias bubu='bubo && bubc'
 | 
						|
alias bcubo='brew update && brew cask outdated'
 | 
						|
alias bcubc='brew cask reinstall $(brew cask outdated) && brew cleanup' |