LHManip / extract_files.sh
fedeceola's picture
Upload extract_files.sh
f7d28ef verified
raw
history blame
275 Bytes
#!/bin/bash
for dir in long_horizon_manipulation_dataset/*
do
if [[ -d $dir ]]; then
for EPISODE in {0..9}
do
unzip "$dir""/""$EPISODE"".zip" -d "long_horizon_manipulation_dataset" && rm "$dir""/""$EPISODE"".zip"
done
fi
done