K K-Shaps macrumors newbie Original poster Sep 9, 2011 #1 Just like the title says. For example let's say I have 50 files that need zipping. I want each one to be zipped, but not grouped into one giant zip with the others. Can anyone help me! Thanks.
Just like the title says. For example let's say I have 50 files that need zipping. I want each one to be zipped, but not grouped into one giant zip with the others. Can anyone help me! Thanks.
K K-Shaps macrumors newbie Original poster Sep 12, 2011 #3 That doesn't answer my question I am looking for an application that does this.
GGJstudios macrumors Westmere Sep 12, 2011 #4 K-Shaps said: That doesn't answer my question I am looking for an application that does this. Click to expand... Yes, it does answer your question. There is no application that does this. A job automator or a shell script is the most likely solution.
K-Shaps said: That doesn't answer my question I am looking for an application that does this. Click to expand... Yes, it does answer your question. There is no application that does this. A job automator or a shell script is the most likely solution.
frocco macrumors 6502 Sep 12, 2011 #5 See if this helps http://automatorworld.com/archives/one-zipper/
M Mav3067 macrumors member Sep 12, 2011 #6 This should be easily accomplished on the command line with something along the lines of Code: for i in <list of files to zip>; do zip $i $i; done You can also use the * character to reduce typing out the list of files. Code: for i in *.txt; do zip $i $i; done
This should be easily accomplished on the command line with something along the lines of Code: for i in <list of files to zip>; do zip $i $i; done You can also use the * character to reduce typing out the list of files. Code: for i in *.txt; do zip $i $i; done