Update 03-01-2024
This commit is contained in:
@@ -94,6 +94,34 @@ $ ls archive.tar
|
||||
|
||||
|
||||
|
||||
#### xz (tar 1.22+)
|
||||
|
||||
Compresser un fichier au format .xz:
|
||||
|
||||
```bash
|
||||
$ xz -k9 monfichier
|
||||
```
|
||||
|
||||
Compresser une archive au format .tar.xz:
|
||||
|
||||
```bash
|
||||
$ tar cfJ fichier.tar.xz mondossier
|
||||
```
|
||||
|
||||
Décompresser un fichier au format .xz:
|
||||
|
||||
```bash
|
||||
$ xz -d monfichier
|
||||
```
|
||||
|
||||
Décompresser une archive au format .tar.xz:
|
||||
|
||||
```bash
|
||||
$ tar -xJf fichier.tar.xz
|
||||
```
|
||||
|
||||
|
||||
|
||||
#### zip
|
||||
|
||||
Compresser avec zip:
|
||||
|
||||
Reference in New Issue
Block a user