Update README.md
Browse files
README.md
CHANGED
|
@@ -24,6 +24,23 @@ size_categories:
|
|
| 24 |
|
| 25 |

|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
## 📖 Citation
|
| 28 |
|
| 29 |
If you use CoInfra, please cite:
|
|
|
|
| 24 |
|
| 25 |

|
| 26 |
|
| 27 |
+
|
| 28 |
+
## Extraction Instructions
|
| 29 |
+
The archives are compressed using `zstd` for fast decompression. To extract the dataset, you need to have `zstd` installed. You can install it via package managers like `apt`, `brew`.
|
| 30 |
+
|
| 31 |
+
**To extract an archive, use the following command:**
|
| 32 |
+
```bash
|
| 33 |
+
tar --use-compress-program=zstd -xf [archive_file.tar.zst]
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
**To extract all archives in a directory, you can use:**
|
| 37 |
+
```bash
|
| 38 |
+
for archive in *.tar.zst; do
|
| 39 |
+
echo "Extracting $archive..."
|
| 40 |
+
tar --use-compress-program=zstd -xf "$archive"
|
| 41 |
+
done
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
## 📖 Citation
|
| 45 |
|
| 46 |
If you use CoInfra, please cite:
|