From a62f12110b19a52a58d7eae871012202cfa16055 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 22 Nov 2009 14:36:42 +0100 Subject: Renaming categories to archive areas (Closes: #519690). --- functions/arguments.sh | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100755 functions/arguments.sh (limited to 'functions/arguments.sh') diff --git a/functions/arguments.sh b/functions/arguments.sh new file mode 100755 index 000000000..bbc439c84 --- /dev/null +++ b/functions/arguments.sh @@ -0,0 +1,81 @@ +#!/bin/sh + +# arguments.sh - handle common arguments +# Copyright (C) 2006-2009 Daniel Baumann +# +# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +# This is free software, and you are welcome to redistribute it +# under certain conditions; see COPYING for details. + +Arguments () +{ + ARGUMENTS="$(getopt --longoptions breakpoints,conffile:,debug,force,help,quiet,usage,verbose,version --name=${PROGRAM} --options c:huv --shell sh -- "${@}")" + + if [ "${?}" != "0" ] + then + Echo_error "terminating" >&2 + exit 1 + fi + + eval set -- "${ARGUMENTS}" + + while true + do + case "${1}" in + --breakpoints) + _BREAKPOINTS="enabled" + shift + ;; + + -c|--conffile) + _CONFFILE="${2}" + shift 2 + ;; + + --debug) + _DEBUG="enabled" + shift + ;; + + --force) + _FORCE="enabled" + shift + ;; + + -h|--help) + Man + shift + ;; + + --quiet) + _QUIET="enabled" + shift + ;; + + -u|--usage) + Usage + shift + ;; + + --verbose) + _VERBOSE="enabled" + shift + ;; + + -v|--version) + Version + shift + ;; + + --) + shift + break + ;; + + *) + Echo_error "internal error %s" "${0}" + exit 1 + ;; + esac + done +} -- cgit v1.2.3