6 lines
115 B
Bash
Executable File
6 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
tmpfile=$(mktemp /tmp/img-diff.XXXXXX)
|
|
compare -compose src $1 $2 $tmpfile
|
|
eog -n $tmpfile
|
|
rm $tmpfile
|