mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 14:09:49 +08:00
8 lines
90 B
Bash
8 lines
90 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"apk")
|
|
apk --version | grep "${2#*v}"
|
|
;;
|
|
esac
|