I would like to use Exiftool to create an array of -Artists for all files in a directory. Using the exiftool command below works but the output is not desirable:
C:\exiftool.exe -Artist Dir
The output looks something like this:
======== E:/File1.jpg
Artist : user1
======== E:/File2.jpg
Artist : user2
1 directories scanned
2 image files read
I would like the output to look something like this:
user1_user2
Or at least a simple array or output like:
user1
user2