zip individual files recursively
Zip up every fb2 file in a book collection to save some space since reader can read them from zip files anyway:
find . -type f -execdir zip -m '{}'.zip '{}' \;
Categories: Linux
Zip up every fb2 file in a book collection to save some space since reader can read them from zip files anyway:
find . -type f -execdir zip -m '{}'.zip '{}' \;