1#!/bin/sh 2set -e 3 4# Test zstdcat symlink in bin/ 5zstdcat hello.zst 6zstdcat hello.zst world 7zstdcat hello world.zst 8zstdcat hello.zst world.zst 9 10# Test local zstdcat symlink 11ln -s $(which zstd) ./zstdcat 12./zstdcat hello.zst 13