mirror of
https://github.com/facebook/zstd.git
synced 2025-07-06 23:56:40 +02:00
13 lines
223 B
Bash
13 lines
223 B
Bash
![]() |
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
# Test zstdcat symlink in bin/
|
||
|
zstdcat hello.zst
|
||
|
zstdcat hello.zst world
|
||
|
zstdcat hello world.zst
|
||
|
zstdcat hello.zst world.zst
|
||
|
|
||
|
# Test local zstdcat symlink
|
||
|
ln -s $(which zstd) ./zstdcat
|
||
|
./zstdcat hello.zst
|