Bash脚本 - getopts中的最后一个案例没有被读取

时间:2016-08-06 00:04:03

标签: bash shell arguments getopts

我有以下bash脚本

#!/bin/bash

id=""
alias=""
password=""
outputDirectory=""
extension=""

function ParseArgs()
{
while getopts "t:a:p:f:r:o:e" arg
do
case "$arg" in
t)
id=$OPTARG;;
a)
alias="$OPTARG";;
p)
password="$OPTARG";;
f)
folderPath="$OPTARG";;
r)
relativeFolderPath="$OPTARG";;
o)
outputDirectory="$OPTARG";;
e)
extension="$OPTARG";;
-)      break;;
esac
done
}

ParseArgs $*

echo "Getting all input files from $folderPath"
inputFiles=$folderPath/*

echo "Output is $outputDirectory"
echo "Extension is $extension"
if [[ $extension != "" ]]
then
    echo "Get all input files with extension: $extension"
    inputFiles = $folderPath/*.$extension
fi

for file in $inputFiles
do
    echo "Processing $file"
done

由于某种原因,如果我使用它,则不会读取最后一个参数(-e)。例如,我使用或不使用最后一个参数(-e xml)获得相同的输出,我通过包含outputDirectory来测试它,以确保它被读取。

sh mybashscript.sh -t 1 -a user -p pwd -o /Users/documents -f /Users/documents/Folder -r documents/Folder/a.xml -e xml
Getting all input files from /Users/dlkc6428587/documents/ResFolder
Output is /Users/documents
Extension is 
Processing /Users/documents/Folder/a.xml
Processing /Users/documents/Folder/b.xml

这真的很奇怪,有谁知道我做错了什么?谢谢。

1 个答案:

答案 0 :(得分:1)

-e的调用中,您没有表示getopts通过冒号跟随它来接受参数:

while getopts "t:a:p:f:r:o:e:" arg

另外,你应该像这样调用这个函数

ParseArgs "$@"

确保正确处理包含空格的任何参数。

最后,inputFiles应该是一个数组:

inputFiles=( "$folderPath"/*."$extension" )

for file in "${inputFiles[@]}"
do
    echo "Processing $file"
done