9 lines
96 B
Bash
Executable File
9 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
datagen > file
|
|
|
|
zstd file -cq --trace-file-stat > file.zst
|
|
zstd -tq file.zst
|