I'd like to know the easiest way to compress multiple files without adding the individual files into one big zip file. So:
file1.xyz
file2.dfs
file3.ddd
should become
file1.zip
file2.zip
file3.zip
I tried something like zip *.*, but that didn't work.
file1.xyz
file2.dfs
file3.ddd
should become
file1.zip
file2.zip
file3.zip
I tried something like zip *.*, but that didn't work.