• 替换文件最后一行中的所有e 为 E


    #root@athena5plus:~# cat b
        northwest       NW     Charles Main           3.0      .98      3       34
        western          WE      Sharon Gray           5.3      .97     5       23
        southwest       SW     Lewis Dalsass          2.7      .8      2       18
        southern         SO      Suan Chin               5.1     .95     4       15
        southeast       SE       Patricia Hemenway   4.0      .7      4       17
        eastern           EA      TB Savage               4.4     .84     5       20
        northeast        NE      AM Main Jr.              5.1     .94     3       13
        north              NO      Margot Weber         4.5     .89     5       9
        central            CT      Ann Stephens          5.7     .94     5       13
    root@athena5plus:~# sed -n '$ s/e/E/gp' b
        cEntral            CT      Ann StEphEns          5.7     .94     5       13

    最后一行,用AWK可以用 “NR=最后一行“ 定位到,但是没法用“s/.../.../gp”进行替换, 并且事先得知道最后一行的行号

    (2)获取最后一行

    #gawk 'END{print}' b

    #sed -n '$p' b

    #awk '{a=$0} END{print a}' b

    #sed '$!d' b

  • 相关阅读:
    java中商业数据计算时用到的类BigDecimal和DecimalFormat
    Git和SVN之间的区别
    ubuntu 交叉编译arm linux 内核小例子
    交叉编译工具链介绍《Building Embedded Linux Systems》
    交叉编译工具链命名详解
    oracle数据库分页总结
    oracle随机数(转)
    oracle函数nvl, nvl2, nullif
    反转数字, 即输入123, 返回321
    java试题
  • 原文地址:https://www.cnblogs.com/Berryxiong/p/5750695.html
Copyright © 2020-2023  润新知