Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
You can use Vim in Ex mode:
ex -scs -c '1d5|x' file
1 move to first line
1
5 select 5 lines
5
d delete
d
x save and close
x
ex -sc '1d5|x' file
ex -s -c '1d5|x' file
ex -sc '1,5d|x''1d5|x' file
1, move to first line
1,
5 select first 5 lines
ex -sc '1,5d|x' file
1,5 select first 5 lines
1,5