gpt4 book ai didi

linux bash脚本获取用户输入并存储在数组中

转载 作者:IT王子 更新时间:2023-10-29 01:08:46 32 4
gpt4 key购买 nike

我想编写一个 bash 脚本来获取用户输入并将其存储在数组中。输入:1 4 6 9 11 17 22

我希望将其保存为数组。

最佳答案

这样读:

read -a arr

测试:

read -a arr <<< "1 4 6 9 11 17 22"

打印数组中元素的数量:

echo ${#arr[@]}

或遍历上述数组

for i in ${arr[@]}
do
echo $i # or do whatever with individual element of the array
done

关于linux bash脚本获取用户输入并存储在数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17199736/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com