sed命令

作者: 千浪 | 来源:发表于2020-04-13 13:59 被阅读0次

    git branch

    使用git branch命令时,当前分支前会有“*”号显示,怎么通过脚本获取到呢,stackoverflow上有个回答使用到了sed命令:

    The * is expanded, what you can do is use sed instead of grep and get the name of the branch immediately:

    branch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
    

    And a version using git symbolic-ref, as suggested by Noufal Ibrahim

    branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')
    

    How to get the name of the current git branch into a variable in a shell script? [duplicate]

    sed命令

    sed是一种流编辑器,它是文本处理中非常中的工具,能够完美的配合正则表达式使用,功能不同凡响。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(pattern space),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理下一行,这样不断重复,直到文件末尾。文件内容并没有 改变,除非你使用重定向存储输出。Sed主要用来自动编辑一个或多个文件;简化对文件的反复操作;编写转换程序等。
    https://man.linuxde.net/sed

    相关文章

      网友评论

        本文标题:sed命令

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