美文网首页
shell获取字符串行号

shell获取字符串行号

作者: 梦宇_0cfc | 来源:发表于2018-05-30 11:38 被阅读0次

    获取文本对应文本的行号,可以用grep,也可以用sed

    grep -n "xxx" a.txt | cut -d ":" -f 1

    sed -n -e '/xxx/=' a.txt

    若要保存到变量,可以利用函数

    function get_line() {

        sed -n -e '/xxx/=' a.txt

    }

    line=$(get_line)

    echo $line

    相关文章

      网友评论

          本文标题:shell获取字符串行号

          本文链接:https://www.haomeiwen.com/subject/aqmscftx.html