0%

here字符串

here字符串

here Strings

这是我觉得最有用的一个功能

1
2
3
4
5
6
7
[root@vm-101 ~]# read a1 a2 a3 <<< "aaa bbb ccc"
[root@vm-101 ~]# echo $a1
aaa
[root@vm-101 ~]# echo $a2
bbb
[root@vm-101 ~]# echo $a3
ccc

这个功能也不错

1
2
3
4
5
6
7
8
9
10
11
[root@vm-101 ~]# vars="aaa bbb ccc ddd eee fff"
[root@vm-101 ~]# grep 'aa' $vars
grep: aaa: 没有那个文件或目录
grep: bbb: 没有那个文件或目录
grep: ccc: 没有那个文件或目录
grep: ddd: 没有那个文件或目录
grep: eee: 没有那个文件或目录
grep: fff: 没有那个文件或目录

[root@vm-101 ~]# grep 'aa' <<< $vars
aaa bbb ccc ddd eee fff