Bash working code to delete first or last line from file

前端 未结 7 1951
面向向阳花
面向向阳花 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:23

    Giving this answer since sed is not tagged.

    head -`wc -l test2.cc | awk '{print ($1-1)}'` test2.cc
    

提交回复
热议问题