1 2 3 4 5 6 7 8 9 10 11 12
if ! command -v magick > /dev/null; then magick() { for i in \ convert identify mogrify composite montage \ compare stream display animate import conjure do if test "$1" = "$i"; then "$@" return fi done convert "$@"; }; fi