mirror of
https://github.com/coolsnowwolf/packages
synced 2025-01-08 13:27:39 +08:00
8 lines
80 B
Bash
8 lines
80 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"gnunet")
|
|
gnunet-arm --version | grep "$2"
|
|
;;
|
|
esac
|