ohmyzsh/plugins/catimg/catimg.plugin.zsh
Eduardo San Martin Morote 0a926f3510 catimg: fix exit without using source
supresses errors from convert whilen converting, as they
are usually just warnings
2014-11-28 14:36:23 +01:00

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