alemmsm Verified User Joined Nov 9, 2017 Messages 43 Oct 11, 2020 #1 hi How to zip all the contents of the /"domains" folder except mp3 files ?
alemmsm Verified User Joined Nov 9, 2017 Messages 43 Oct 12, 2020 #3 floyd said: Use -X Click to expand... ?
floyd Verified User Joined Mar 29, 2005 Messages 6,255 Oct 12, 2020 #4 Use -X in the zip command. There are plenty of examples in a good search. zip -r domains.zip domains -x *.mp3 Click to expand...
Use -X in the zip command. There are plenty of examples in a good search. zip -r domains.zip domains -x *.mp3 Click to expand...
alemmsm Verified User Joined Nov 9, 2017 Messages 43 Oct 17, 2020 #5 floyd said: Use -X in the zip command. There are plenty of examples in a good search. Click to expand... Thank you so much. What if I want to add mp4 files Also? zip -r domains.zip domains -x *.mp3 + *.mp4 Click to expand... Click to expand...
floyd said: Use -X in the zip command. There are plenty of examples in a good search. Click to expand... Thank you so much. What if I want to add mp4 files Also? zip -r domains.zip domains -x *.mp3 + *.mp4 Click to expand... Click to expand...
floyd Verified User Joined Mar 29, 2005 Messages 6,255 Oct 17, 2020 #6 I think you can google it. That's what I did to find the answer above.
jayw1 Verified User Joined Nov 20, 2019 Messages 204 Location USA Oct 21, 2020 #7 --exclude *.mp3* --exclude *.mp4*