33 lines
500 B
Bash
33 lines
500 B
Bash
#!/bin/sh
|
|
|
|
usage="\
|
|
Usage: libgtop-config [--version] [--config]"
|
|
|
|
config_file="@LIBGTOP_LIBDIR@/libgtopConf.sh"
|
|
. $config_file
|
|
|
|
if test $# -eq 0; then
|
|
echo "${usage}" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
while test $# -gt 0; do
|
|
case "$1" in
|
|
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|
*) optarg= ;;
|
|
esac
|
|
|
|
case $1 in
|
|
--version)
|
|
echo $LIBGTOP_VERSION
|
|
;;
|
|
--config)
|
|
echo $config_file
|
|
;;
|
|
*)
|
|
echo "${usage}" 1>&2
|
|
exit 1
|
|
esac
|
|
shift
|
|
done
|