7z
7z (sometimes known as “7-Zip”) is a file archiver with a high compression ratio
Compress each folder (and file) in a folder into separate archive
Section titled “Compress each folder (and file) in a folder into separate archive”for i in ./*; do zip -r "$i.zip" "$i";done