Files
packages/libs/valkey/test.sh
T
Matthew Cather fdcb89b61e valkey: add new package
Valkey is a community fork of the  key-value database Redis.
It is a drop in replacement to Redis so most of the files are
derived from their Redis equivalent.

Co-authored-by: George Sapkin <george@sapk.in>
Signed-off-by: Matthew Cather <mattbob4@gmail.com>
2026-04-24 06:51:29 +03:00

14 lines
211 B
Bash
Executable File

#!/bin/sh
case "$1" in
valkey-server)
valkey-server --version | grep -F "$2"
;;
valkey-cli)
valkey-cli --version | grep -F "$2"
;;
valkey-utils)
valkey-benchmark --version | grep -F "$2"
;;
esac