I have some file like this :
abc 123
abc 789
bcd 456
acb 135
abc 123
abc 789
bcd 456
acb 135
I would like to print first column of next line in current line.
Desired output:
abc 123 abc
abc 789 bcd
bcd 456 acb
acb 135
abc 123 abc
abc 789 bcd
bcd 456 acb
acb 135
I prefer to use awk.