You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
816 B
17 lines
816 B
################################################################################ |
|
# catimg script by Eduardo San Martin Morote aka Posva # |
|
# https://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 |
|
}
|
|
|