Joe Quinn <jdawg1...@gmail.com> wrote:
> I have a bunch of nls books in folders that I want to compress to zip files.
> I want to compress each folder intoits'  own   zip file. And like about
> doing this on the Mac? Obviouslyselecting multiple folders result in
> compressing  everything into one zip file which is what I don't want. Any
> help on this would be greatly appreciated.

Could you try a suitable variant of the following (not tested, so please
check and correct as needed)?

>From the top-level directory, at your shell prompt:

for dir in * ; do
zip -r $dir.zip $dir
done

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at http://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

Reply via email to