mktar: Use `wc` instead of `du` in summary message
[sunny256-utils.git] / exifdiff
blobe67367660f5a2d15559cb3e7a240d7ac4b44726b
1 #!/bin/bash
3 #==============================================================================
4 # exifdiff
5 # File ID: 9c91422a-08e1-11e8-abe0-f74d993421b0
6 #==============================================================================
8 progname=exifdiff
9 VERSION=0.1.1
11 vimdiff <(exiftool -api LargeFileSupport=1 "$1") \
12 <(exiftool -api LargeFileSupport=1 "$2")
14 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :