How to create a ZIP file in the Shell? [closed]

1

How do I create a ZIP file in the Shell with today's date files? The files are all in the same directory.

    
asked by anonymous 18.06.2018 / 22:35

1 answer

0

You can try something like:

find. -ctime -1 -iname "* .txt" -exec zip .zip files {} \;

find has some interesting options for searching for files based on the date of creation, access, and modification. Take a look at his man.

    
19.06.2018 / 16:55