Files
libgtop/libgtop-config.in
Martin Baulig 8f2b396347 New file.
1998-08-17  Martin Baulig  <martin@home-of-linux.org>

	* libgtop-conf.in: New file.
1998-08-16 23:22:13 +00:00

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