blob: acc74d277868aabd4474efbe86cb6f250926ec5e (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
case "$1" in
zstd)
# zstdgrep and zstdless are shell script wrappers; they do not output a version
[ -x /usr/bin/zstdgrep ] || exit 1
[ -x /usr/bin/zstdless ] || exit 1
;;
esac
|