f7d28ef
1
2
3
4
5
6
7
8
9
10
11
12
#!/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