aboutsummaryrefslogtreecommitdiff
path: root/find_magick.sh
blob: 4bedd38423311106e79b10613ab7fff26b5dd7b6 (plain)
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