Files
legolog/db/image/compressor.sh
Ben 245b8fd4d1 the image database
Former-commit-id: ac868cf24e85a95fd65ddea93ea2324942c2cdb3
2022-02-03 19:56:09 +00:00

8 lines
103 B
Bash

for f in *; do
if [ -d "$f" ]; then
echo $f
tar -czvf $f.tar.gz "$f"/
fi
done