mirror of
https://github.com/facebook/zstd.git
synced 2025-10-09 00:05:28 -04:00
8 lines
95 B
Bash
Executable File
8 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
datagen | zstd -q > file.zst
|
|
|
|
zstd -dcq --trace-file-stat < file.zst > file
|