1
我的bash腳本需要從屬性文件中讀取值並將它們分配給多個數組。陣列的數量也通過配置進行控制。我當前的代碼如下:將值分配給動態數組
limit=$(sed '/^\#/d' $propertiesFile | grep 'limit' | tail -n 1 | cut -d "=" -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')
for ((i = 1 ; i <= $limit ; i++))
do
#properties that define values to be assigned to the arrays are labeled myprop## (e.g. myprop01, myprop02):
lookupProperty=myprop$(printf "%.2d" "$i")
#the following line reads the value of the lookupProperty, which is a set of space-delimited strings, and assigns it to the myArray# (myArray1, myArray2, etc):
myArray$i=($(sed '/^\#/d' $propertiesFile | grep $lookupProperty | tail -n 1 | cut -d "=" -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//'))
done
當我嘗試執行上面的代碼,會顯示以下錯誤信息:
syntax error near unexpected token `$(sed '/^\#/d' $propertiesFile | grep $lookupProperty | tail -n 1 | cut -d "=" -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')'
我相當肯定的問題是我聲明的方式「myArray $ i」數組。但是,我嘗試的任何不同方法都會產生相同的錯誤或不完整的結果。
任何意見/建議?
謝謝! '讀-a myArray $ i <<<「a b c」'做了訣竅。 – user3078422