Home | History | Annotate | Line # | Download | only in compression
      1 #!/bin/sh
      2 datagen -g1G > file
      3 zstd --long=30 -1 --single-thread --no-content-size -f file
      4 zstd -l -v file.zst
      5 
      6 # We want to ignore stderr (its outputting "*** zstd command line interface
      7 # 64-bits v1.5.3, by Yann Collet ***")
      8 
      9 rm file file.zst
     10