catimg.plugin.zsh 816 Bytes
Newer Older
Eduardo San Martin Morote's avatar
Eduardo San Martin Morote committed
1
2
################################################################################
# catimg script by Eduardo San Martin Morote aka Posva                         #
Janosch Schwalm's avatar
Janosch Schwalm committed
3
# https://posva.net                                                            #
Eduardo San Martin Morote's avatar
Eduardo San Martin Morote committed
4
5
6
7
8
9
#                                                                              #
# Ouput the content of an image to the stdout using the 256 colors of the      #
# terminal.                                                                    #
# Github: https://github.com/posva/catimg                                      #
################################################################################

10
11
12

function catimg() {
  if [[ -x  `which convert` ]]; then
13
    zsh $ZSH/plugins/catimg/catimg.sh $@
14
15
16
17
  else
    echo "catimg need convert (ImageMagick) to work)"
  fi
}