Skip to content

Commit

Permalink
update extract command
Browse files Browse the repository at this point in the history
  • Loading branch information
almazgimaev committed Jan 25, 2024
1 parent cff3255 commit 14005ce
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,18 @@ In the case of a split archive:
- for Windows:
use the following freeware to unpack Multi-Tar files: [7-zip](https://www.7-zip.org/) and click on the first file (with extension `.tar.001`)

- for Linux/MacOS:
- for MacOS:
replace `<path_to_folder_with_archive_parts>`, `<projectId>` and `<projectName>` with your values and run the following commands in the terminal:

```bash
cd <path_to_folder_with_archive_parts>
cat <projectId>_<projectName>.tar* | tar --options read_concatenated_archives -xvf -
```

- for Linux (Ubuntu):
replace `<path_to_folder_with_archive_parts>`, `<projectId>` and `<projectName>` with your values and run the following commands in the terminal:

```bash
cd <path_to_folder_with_archive_parts>
cat '<projectId>_<projectName>.tar'* > result_archives.tar | tar -xvf concatenated_archives.tar
```

0 comments on commit 14005ce

Please sign in to comment.