如何在bash中为数组赋值?

时间:2012-06-18 17:25:00

标签: arrays bash shell

我正在尝试从文本文件hello.txt中读取值列表并将它们存储在数组中。

counter=0

cat hello.txt | while read line; do
 ${Unix_Array[${counter}]}=$line;
 let counter=counter+1;
    echo $counter;
done

echo ${Unix_Array[0]}
echo ${Unix_Array[1]}
echo ${Unix_Array[2]}

我无法将值赋给数组Unix_Array [] .. echo语句不会打印数组的内容。

5 个答案:

答案 0 :(得分:12)

这里有一些语法错误,但明显的问题是分配正在发生,但是you're in an implied subshell。通过使用管道,您已经为整个while语句创建了一个子shell。当while语句完成后,子shell退出,Unix_Array不再存在。

在这种情况下,最简单的解决方法是不使用管道:

counter=0

while read line; do
  Unix_Array[$counter]=$line;
  let counter=counter+1;
  echo $counter;
done < hello.txt

echo ${Unix_Array[0]}
echo ${Unix_Array[1]}
echo ${Unix_Array[2]}

顺便说一下,你真的不需要柜台。更简单的方法是:

$ oIFS="$IFS" # Save the old input field separator
$ IFS=$'\n'   # Set the IFS to a newline
$ some_array=($(<hello.txt)) # Splitting on newlines, assign the entire file to an array
$ echo "${some_array[2]}" # Get the third element of the array
c
$ echo "${#some_array[@]}" # Get the length of the array
4

答案 1 :(得分:5)

如果您使用的是bash v4或更高版本,则可以使用mapfile来完成此操作:

mapfile -t Unix_Array < hello.txt

否则,这应该有效:

while read -r line; do
   Unix_Array+=("$line")
done < hello.txt

答案 2 :(得分:0)

而不是:

cat hello.txt | while read line; do
 ${Unix_Array[${counter}]}=$line;
 let counter=counter+1;
    echo $counter;
done

你可以这样做:

Unix_Array=( `cat "hello.txt" `)

答案 3 :(得分:0)

它是一个解决方案:

count=0
Unix_Array=($(cat hello.txt))
array_size=$(cat hello.txt | wc -l)
for ((count=0; count < array_size; count++))
do
    echo ${Unix_Array[$count]}
done

答案 4 :(得分:0)

我发现的最好方法是:

declare -A JUPYTER_VENV
JUPYTER_VENV=(test1 test2 test3)

然后使用:

for jupenv in ${JUPYTER_ENV[@]}
do
  echo $jupenv
done