config/scripts/imgdiff

6 lines
115 B
Plaintext
Raw Normal View History

2017-11-24 10:31:17 +01:00
#!/bin/bash
tmpfile=$(mktemp /tmp/img-diff.XXXXXX)
compare -compose src $1 $2 $tmpfile
eog -n $tmpfile
rm $tmpfile