From: rhatto Date: Fri, 26 Jan 2007 00:07:50 +0000 (+0000) Subject: eval_parameter small fix X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=51da06323143ce155d765b5efa0ea10c8cb02147;p=simplepkg.git eval_parameter small fix git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@126 04377dda-e619-0410-9926-eae83683ac58 --- diff --git a/lib/common.sh b/lib/common.sh index 2065739..fccca64 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -151,7 +151,7 @@ function eval_parameter { # return the evaluated parameter if available or $2 $3 ... $n if grep -qe "^$1=" $CONF; then - grep -e "^$1=" $CONF | cut -d = -f 2 | sed -e 's/"//g' -e "s/'//g" | awk '{ print $1 }' + grep -e "^$1=" $CONF | cut -d = -f 2 | sed -e 's/"//g' -e "s/'//g" | sed -e 's/#.*$//' else shift echo $*