Bash working code to delete first or last line from file

前端 未结 7 1883
面向向阳花
面向向阳花 2021-01-11 10:31

I saw the sed examples, but no matter how I write that it won\'t delete my first line. Actually, I did more tests and it won\'t delete my first line either, so

7条回答
  •  一向
    一向 (楼主)
    2021-01-11 11:14

    If your sed supports in-place editing, it's sed -e '1d' -e '$d' -i filename.

提交回复
热议问题