• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Linux shell 获得字符串所在行数及位置的方法

    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
    

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

    您可能感兴趣的文章:
    • linux shell判断字符串为空的正确方法示例
    • Linux Shell 截取字符串的方法示例
    • Linux Shell 生成随机数和随机字符串的方法示例
    • linux shell字符串内置的常用操作(获取长度、查找、替换)
    • linux shell 字符串操作(长度,查找,替换)详解
    • Linux shell脚本中字符串连接的方法
    上一篇:Linux忘记root密码进入单用户模式切换运行级别切换用户
    下一篇:Linux查找文件夹下包含某字符的所有文件
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

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