#!/bin/bashset-e# cleanup old cache files for datasets processing and intermediate mappingsfind /workspace/data/huggingface-cache/hub/datasets -name"cache-*"-type f -mtime +1 -execrm{}\;find /workspace/data/huggingface-cache/hub/datasets -name"*.lock"-type f -mtime +1 -execrm{}\;