Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
nanoarrow / subprojects / zstd-1.5.6 / tests / cli-tests / compression / compress-literals.sh
Size: Mime:
#!/bin/sh

set -e

# Test --[no-]compress-literals
zstd file --no-compress-literals -1 -c       | zstd -t
zstd file --no-compress-literals -19 -c      | zstd -t
zstd file --no-compress-literals --fast=1 -c | zstd -t
zstd file --compress-literals -1 -c          | zstd -t
zstd file --compress-literals --fast=1 -c    | zstd -t