mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			816 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			816 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
################################################################################
 | 
						|
# catimg script by Eduardo San Martin Morote aka Posva                         #
 | 
						|
# https://posva.net                                                            #
 | 
						|
#                                                                              #
 | 
						|
# Output the content of an image to the stdout using the 256 colors of the     #
 | 
						|
# terminal.                                                                    #
 | 
						|
# GitHub: https://github.com/posva/catimg                                      #
 | 
						|
################################################################################
 | 
						|
 | 
						|
 | 
						|
function catimg() {
 | 
						|
  if [[ -x  `which convert` ]]; then
 | 
						|
    zsh $ZSH/plugins/catimg/catimg.sh $@
 | 
						|
  else
 | 
						|
    echo "catimg need convert (ImageMagick) to work)"
 | 
						|
  fi
 | 
						|
}
 |