Update 03-01-2024

This commit is contained in:
2024-01-03 09:17:00 +01:00
parent d78f93eed2
commit efb8d64ac7
22 changed files with 1047 additions and 44 deletions

View File

@@ -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: