#!/usr/bin/env perl # exif_extractor.pl use strict; use warnings; use Data::Printer; use Image::ExifTool qw(:Public); use Getopt::Long; my ( $image, $all, $help ); my $options = GetOptions( "image=s" => \$image, "all" => \$all, "help" => \$help, ); my $usage = <