34e523315c
Related: #2182490
10 lines
119 B
Bash
Executable File
10 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
for b in gpsd gpscat gpspipe cgps gpsfake ubxtool; do
|
|
$b --help |& grep -i ^usage:
|
|
done
|
|
|
|
exit 0
|