xref: /aosp_15_r20/external/zstd/tests/cli-tests/zstd-symlinks/zstdcat.sh (revision 01826a4963a0d8a59bc3812d29bdf0fb76416722)
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