oh-my-zsh/plugins/catimg/catimg.plugin.zsh

17 lines
814 B
Bash
Raw Normal View History

################################################################################
# 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() {
2013-12-09 21:07:19 +00:00
source $ZSH/plugins/catimg/catimg.sh $@
}
else
echo "catimg need convert (ImageMagick) to work)"
fi