The article "Create multiple individual zip files" (MW 8/1/08) includes an Automator workflow that compresses every file in the current working folder to its own individual zipfile.
The script is:
for f in "$@"
do
zip -j "$f.zip" "$f"
done
That puts all of the zipfiles in the same folder as the originals.
How can that script be modified to instead direct the zipfiles to a subfolder of the folder which contains the files that are being zipped?
Thanks.
Page 1 of 1
"Create multiple individual zip files" (MW 8/1/08) -- & output them to a 'subfolder'?
Page 1 of 1



Sign In
Register
Help


MultiQuote