gpt4 book ai didi

unix shell 中的数组?

转载 作者:行者123 更新时间:2023-11-29 08:39:31 24 4
gpt4 key购买 nike

如何在 unix shell 脚本中创建数组?

最佳答案

以下代码在 shell 中创建并打印字符串数组:

#!/bin/bash
array=("A" "B" "ElementC" "ElementE")
for element in "${array[@]}"
do
echo "$element"
done

echo
echo "Number of elements: ${#array[@]}"
echo
echo "${array[@]}"

结果:

A
B
ElementC
ElementE

Number of elements: 4

A B ElementC ElementE

关于unix shell 中的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1878882/

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