Update README.md
Browse files
README.md
CHANGED
@@ -28,8 +28,16 @@ Here is an example using the command line with `unzip`:
|
|
28 |
# Navigate to the directory containing the compressed parts
|
29 |
cd dataset/figures
|
30 |
|
31 |
-
# Use unzip to extract the images
|
32 |
unzip compressedfigures.zip
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
```
|
34 |
|
35 |
This will extract the contents into the `dataset/figures/` directory. Ensure that you have enough storage space to accommodate the uncompressed images.
|
|
|
28 |
# Navigate to the directory containing the compressed parts
|
29 |
cd dataset/figures
|
30 |
|
31 |
+
# Use unzip to extract the first set of images
|
32 |
unzip compressedfigures.zip
|
33 |
+
|
34 |
+
# combine the second set of images
|
35 |
+
cat compressedfigures_part2* > compressedfigures_part2.tar.gz
|
36 |
+
# unzip second set of images
|
37 |
+
tar xf compressedfigures_part2.tar.gz
|
38 |
+
|
39 |
+
# You're good to go!
|
40 |
+
|
41 |
```
|
42 |
|
43 |
This will extract the contents into the `dataset/figures/` directory. Ensure that you have enough storage space to accommodate the uncompressed images.
|