I can't find a way to zip all file inside a folder without the folder itself
-tempfolder
--images
---1.jpg
---2.jpg
---3.jpg
I need to zip all files inside images folder without creating the folder once I extract them following this answer ( and others ) I did try this way but without success zip: Argument list too long (80.000 files in overall)
find images/ -mindepth 1 -maxdepth 1 | zip images/images.zip -@
when I extract files from zip it generate the images folders with all the files inside