当前位置: 移动技术网 > 网络运营>服务器>Linux > Linux shell 获得字符串所在行数及位置的方法

Linux shell 获得字符串所在行数及位置的方法

2019年09月09日  | 移动技术网网络运营  | 我要评论

01 获取字符串所在的行数

方式一:用grep -n

[root@root]# cat test
apple
bit
create
delect
exe
flow
good
[root@root]# cat test | grep -n exe
5:exe
[root@root]# cat test | grep -n exe | awk -f ":" '{print $1}'
5

方式二:用sed -n '/查询的字符串/=' 文件

[root@root]# cat test
apple
bit
create
delect
exe
flow
good
[root@root]# 
[root@root]# sed -n '/exe/=' test
5

02 获取字符串中字符所在的位置

方式一:用awk -f 和 wc -c 组合

[root@root]# echo 'uellevcmpottcap' | awk -f 'ott' '{print $1}';
uellevcmp
[root@root]# echo 'uellevcmpottcap' | awk -f 'ott' '{print $1}' | wc -c
10

方式二:用awk 'begin{print index("'${str}'","'${str1}'") }'

[root@root]# str='uellevcmpottcap';str1='ott';awk 'begin{print index("'${str}'","'${str1}'") }'
10

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网