This repository has been archived on 2025-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
home/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh

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
}