mirror of
https://github.com/facebook/zstd.git
synced 2025-07-06 23:56:40 +02:00
9 lines
96 B
Bash
9 lines
96 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
datagen > file
|
||
|
|
||
|
zstd file -cq --trace-file-stat > file.zst
|
||
|
zstd -tq file.zst
|