Prepend certain lines of file

后端 未结 2 1683
长情又很酷
长情又很酷 2021-01-29 03:15

I\'d like to create a script to comment out lines of my Mac OS X hosts file that contain .com. And also one to reverse it.

So this:

127.0.0.         


        
2条回答
  •  有刺的猬
    2021-01-29 03:42

    With awk

    awk '$2 ~ /.com/{$0 = "#"$0;}{print}' temp.txt
    

    Output

    #127.0.0.1    foo.com
    #127.0.0.1    bar.com
    127.0.0.1    baz
    127.0.0.1    qux
    

提交回复
热议问题