What I want to do exactly is switch the first word of paired lines using sed
. I know this could be easier using something else, but sed is required unfortunately (testing myself)
So, and example would be
One line here
Two line here as well
Third line could be here
fourth line to end
would end up being
Two line here
One line here as well
fourth line could be here
third line to end
I might have been using the wrong operation in sed
but yeah, no idea. any clues?