disk space shaving
¶ by not another Rob?stevenf:
This terminal command will turn every file in the current directory into a zip file of itself (removing the original file):
for item in *; do zip -m “${item}.zip” “${item}”; done
I recently used it to shave 20Â GB off a collection of uncompr…