Title basically, I need to parse the date modified, the time and seconds in order to reconstruct the filenames in the format of an android phone’s camera roll.
I should be able to make the script once I know how to parse the metadata is all
Title basically, I need to parse the date modified, the time and seconds in order to reconstruct the filenames in the format of an android phone’s camera roll.
I should be able to make the script once I know how to parse the metadata is all
You could use
stat
to get this information based on the file itself. And withjhead
for example you can get the additional meta data in the files, stored in the EXIF and IPTC tags.Both can be used in scripts.