Open lebionick opened 3 years ago
Hello I've downloaded dataset using https://github.com/castacks/tartanair_tools/blob/master/download_training.py and all files are in zip archives in subdirectories. I wonder if there is simple yet memory efficient solution to extract all of these archives.
Perhaps this will help:
find . -name "*.zip" | while read filename; do unzip -o -d "`dirname "$filename"`" "$filename"; done;
Hello I've downloaded dataset using https://github.com/castacks/tartanair_tools/blob/master/download_training.py and all files are in zip archives in subdirectories. I wonder if there is simple yet memory efficient solution to extract all of these archives.