#!/bin/bash
priority=false
it=0
dir=/
while getopts "p:i" option
do
case $option in
i) it=$OPTARG;;
p) priority=true;;
esac
done
if [[ ${@:$OPTIND} != "" ]]
then
dir=${@:$OPTIND}
fi
echo $priority $it $dir
If I execute it I get 2 testDir for $dir and 0 for $it, instead of just testDir for $dir and 2 for $it. How can I get the expected behavior?
./test.sh -pi 2 testDir
true 0 2 testDir
bash -x ./test.shto see what your script is doing. Theifblock looks really weird: it means if there is a non-empty non-option argument, then setdirto the result of performing pathname expansion and word splitting on the non-option arguments and concatenating them with spaces. (Complicated, eh?) I suspect you meantif [[ ${!OPTIND} != "" ]]; then dir=${!OPTIND}; fi. The usual method is even simpler: runshift $OPTINDafter parsing the option, so that the non-option arguments are$1,$2and so on, thusif [[ -n $1 ]]; then dir=$1; fi. – Gilles Jul 16 '11 at 9:05