oh-my-zsh/plugins/catimg/catimg.plugin.zsh
Eduardo San Martin Morote 8309b0a19b Verification of convert inside the function
Depending on when the path is declared this solution would work in any case
2014-02-23 10:07:26 +01:00

18 lines
816 B
Bash

################################################################################
# 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 #
################################################################################
function catimg() {
if [[ -x `which convert` ]]; then
zsh $ZSH/plugins/catimg/catimg.sh $@
else
echo "catimg need convert (ImageMagick) to work)"
fi
}