mawadalla commited on
Commit
13c7b3e
1 Parent(s): c74520a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
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.