I have a text file that has the following layout:
1
2
3
4
5
6
7
8
9
10
and I want to rearrange it so that it reads:
1 2
3 4
5 6
7 8
9 10
Apparently Awk is the command to use for this sort of thing, but I can understand how to do it.
Help please! Thanks!