• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3# motivated by issue #3523
4
5datagen > file
6mkdir out
7chmod 000 out
8
9zstd file -q --trace-file-stat -o out/file.zst
10zstd -tq out/file.zst
11
12chmod 777 out
13