Update README.md
Browse files
README.md
CHANGED
|
@@ -3,17 +3,16 @@
|
|
| 3 |
Linux/MacOS:
|
| 4 |
|
| 5 |
```bash
|
| 6 |
-
cat AVQA_split.part* >
|
| 7 |
```
|
| 8 |
|
| 9 |
Windows CMD:
|
| 10 |
|
| 11 |
```cmd
|
| 12 |
-
copy /b AVQA_split.part001+AVQA_split.part002+AVQA_split.part003+AVQA_split.part004+AVQA_split.part005
|
| 13 |
```
|
| 14 |
|
| 15 |
Windows PowerShell:
|
| 16 |
|
| 17 |
```powershell
|
| 18 |
-
Get-Content AVQA_split.part* -Raw | Set-Content
|
| 19 |
-
```
|
|
|
|
| 3 |
Linux/MacOS:
|
| 4 |
|
| 5 |
```bash
|
| 6 |
+
cat AVQA_split.part* > AVQA.zip
|
| 7 |
```
|
| 8 |
|
| 9 |
Windows CMD:
|
| 10 |
|
| 11 |
```cmd
|
| 12 |
+
copy /b AVQA_split.part001+AVQA_split.part002+AVQA_split.part003+AVQA_split.part004+AVQA_split.part005 AVQA.zip
|
| 13 |
```
|
| 14 |
|
| 15 |
Windows PowerShell:
|
| 16 |
|
| 17 |
```powershell
|
| 18 |
+
Get-Content AVQA_split.part* -Raw | Set-Content AVQA.zip -Encoding Byte
|
|
|