VenusFactory / script /crawler /unzip_file.sh
2dogey's picture
Upload folder using huggingface_hub
8918ac7 verified
raw
history blame contribute delete
154 Bytes
directory=data/ddg
find "$directory" -type f -name "*.pdb.gz" -exec sh -c '
for file do
gunzip "$file" && echo "unzip $file"
done
' sh {} +