shell 字符串拼接
时间: 2023-11-02 22:56:46 浏览: 382
Shell 字符串拼接的实现示例
在shell中,可以使用以下方式实现字符串拼接:
1. 使用变量拼接
```bash
str1="hello"
str2="world"
result="$str1 $str2"
echo $result
```
输出结果为:`hello world`
2. 使用字符串拼接符号 "+"
```bash
str1="hello"
str2="world"
result=$str1" "$str2
echo $result
```
输出结果为:`hello world`
3. 使用 printf 格式化输出
```bash
str1="hello"
str2="world"
printf "%s %s\n" $str1 $str2
```
输出结果为:`hello world`
其中,`%s` 表示字符串占位符。`\n` 表示换行符。
阅读全文