04-03-2022
This commit is contained in:
@@ -196,6 +196,46 @@ $ unzip -P password vegas.zip
|
||||
|
||||
|
||||
|
||||
#### tzst (Z Standard)
|
||||
|
||||
```bash
|
||||
$ sudo apt install zstd
|
||||
|
||||
$ brew install zstd
|
||||
```
|
||||
|
||||
Compresser:
|
||||
|
||||
```bash
|
||||
# Tous les .sh individuellement
|
||||
$ zstd *.sh
|
||||
26 files compressed :44.75% ( 24.7 KiB => 11.1 KiB)
|
||||
|
||||
# 1 archive pour tous les .sh
|
||||
$ tar --zstd -cf scripts.tar.zst *.sh
|
||||
|
||||
# Niveaux de compression: -1 à -19
|
||||
# Niveaux ultra (19 à 22): --ultra -22
|
||||
```
|
||||
|
||||
Décompresser:
|
||||
|
||||
```bash
|
||||
$ unzstd scripts.tar.zst
|
||||
$ zstd -d scripts.tar.zst
|
||||
scripts.tar.zst : 117248 bytes
|
||||
|
||||
$ tar --zstd -xf scripts.tar.zst
|
||||
```
|
||||
|
||||
BetterZip (macOS)
|
||||
|
||||
[Peazip](https://peazip.github.io/peazip-64bit.html) (Windows)
|
||||
|
||||
[7-zip-zstd](https://github.com/mcmilk/7-Zip-zstd) (command-line)
|
||||
|
||||
|
||||
|
||||
#### dmg (macOS)
|
||||
|
||||
Créer:
|
||||
|
||||
Reference in New Issue
Block a user