Kevin Shackleton <[EMAIL PROTECTED]> writes: > I'm having trouble finding the right syntax for using xargs to extract > multiple zip files that have space characters in the name. Using null > delimiters (eg like: > find *.zip -print0 | xargs -0 unzip > ) is not doing it for me.
for zip in *.zip; do unzip "$zip"; done
Regards,
Daniel
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
