logo
  • 教程列表
  • SO官方文档
  • 地址和地址范围
    • 匹配正则表达式模式的行
    • 具体路线
    • 具体行程范围
    • 使用数字和模式指定范围
    • 否定地址范围
  1. StackOverflow 文档
  2. sed 教程
  3. 地址和地址范围
  4. 具体路线

具体路线

Created: November-22, 2018

$ cat ip.txt
address
range
substitution
pattern
sample
  • ** 第 N 行

    $ sed -n '2p' ip.txt 
    range
    
    $ sed '3d' ip.txt 
    address
    range
    pattern
    sample
    
  • 最后一行

    $ sed -n '$p' ip.txt 
    sample
    
  • 具体行程范围
  • 匹配正则表达式模式的行

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 关于我们
  • 免责声明