Update README.md
Browse files
README.md
CHANGED
|
@@ -107,6 +107,11 @@ Re-download any files that do not pass the check
|
|
| 107 |
3. **Stream-extract the parts:**
|
| 108 |
```
|
| 109 |
cat small.tar.zst.part_* | zstd -d -T0 | tar -xf -
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
```
|
| 111 |
4. **Merge into the same directory using rsync:**
|
| 112 |
```
|
|
|
|
| 107 |
3. **Stream-extract the parts:**
|
| 108 |
```
|
| 109 |
cat small.tar.zst.part_* | zstd -d -T0 | tar -xf -
|
| 110 |
+
rm small.tar.zst.part_*
|
| 111 |
+
cat medium.tar.zst.part_* | zstd -d -T0 | tar -xf -
|
| 112 |
+
rm medium.tar.zst.part_*
|
| 113 |
+
cat large.tar.zst.part_* | zstd -d -T0 | tar -xf -
|
| 114 |
+
rm large.tar.zst.part_*
|
| 115 |
```
|
| 116 |
4. **Merge into the same directory using rsync:**
|
| 117 |
```
|