8 lines
93 B
Bash
8 lines
93 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
datagen | zstd -q > file.zst
|
|
|
|
zstd -dcq --trace-file-stat file.zst > file
|