1#!/bin/sh 2 3set -e 4 5# Test --[no-]compress-literals 6zstd file --no-compress-literals -1 -c | zstd -t 7zstd file --no-compress-literals -19 -c | zstd -t 8zstd file --no-compress-literals --fast=1 -c | zstd -t 9zstd file --compress-literals -1 -c | zstd -t 10zstd file --compress-literals --fast=1 -c | zstd -t 11