mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 03:29:52 +00: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
|