1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-25 01:10:46 +00:00
ohmyzsh/plugins/catimg/catimg.plugin.zsh
Eduardo San Martin Morote 0185d9920b catimg plugin
allow to print an image to the stdout using convert
2013-12-09 08:54:38 +01:00

16 lines
808 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() {
source $(dirname $0)/catimg.sh $@
}
else
echo "catimg need convert (ImageMagick) to work)"
fi