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