mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 02:11:42 +08:00
11 lines
119 B
Bash
11 lines
119 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"gpsd")
|
|
gpsd -V 2>&1 | grep "$2"
|
|
;;
|
|
"gpsd-clients")
|
|
cgps -V 2>&1 | grep "$2"
|
|
;;
|
|
esac
|