shell 字符串与多个字符串数组变量拼接成字符串
时间: 2023-09-12 08:06:38 浏览: 361
Shell 字符串拼接的实现示例
可以使用拼接符号 `+` 来将多个字符串拼接成一个字符串。例如:
```bash
string1="hello"
string2="world"
result=$string1$string2
echo $result
```
输出结果为:`helloworld`
如果要将多个字符串数组变量拼接成一个字符串,可以使用循环遍历数组并拼接。例如:
```bash
array1=("hello" "world")
array2=("how" "are" "you")
result=""
for i in "${array1[@]}" "${array2[@]}"; do
result="$result$i"
done
echo $result
```
输出结果为:`helloworldhowareyou`
阅读全文