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

if [[ -x  `which convert` ]]; then
  function catimg() {
12
    zsh $ZSH/plugins/catimg/catimg.sh $@
Eduardo San Martin Morote's avatar
Eduardo San Martin Morote committed
13
14
15
16
  }
else
  echo "catimg need convert (ImageMagick) to work)"
fi