1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-04 07:47:45 +02:00

linux: added 7z section to remove a file from an archive

This commit is contained in:
tiyn 2023-10-04 23:41:38 +02:00
parent dbdbd80600
commit d1d1589cf0

@ -42,3 +42,13 @@ The name of the archive is assumed to be `directory.7z`.
```sh
7z l directory.7z
```
### Remove a File from an Existing Archive
To remove a file with the assumed name `file.ext` from an archive called `directory.7z` run the
following command as explained by
[user3409415 on stack overflow](https://stackoverflow.com/questions/22344587/how-to-delete-a-file-from-multiple-zip-archives-using-7-zip).
```sh
7z d -r directory.7z file.ext
```