I use this command in order to save the name of all the zip files under a directory, to a file.
find . -iname \*.zip > zipfiles.txt
How can I also include the creation date of the files?
Now the contents of zipfiles.txt are:
/dir/file1.zip
/dir2/file2.zip
I want to include the creation date so something like this:
/dir/file1.zip 1/1/2019 13:15:23
/dir2/file2.zip 1/2/2018 23:55:53