Skip to main content
3 of 3
formatting spelling grammar
ctrl-alt-delor
  • 28.8k
  • 11
  • 66
  • 113

Gnu/Linux: export results of find command including file creation date

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
netdev
  • 113
  • 4