I have a file which has the following format:
1
2
3
4
5
6
I am trying to make it like:
1 2
3 4
5 6
I have tried
awk 'BEGIN { ORS= " "} {print}' test.txt
It makes 1 2 3 4 5 6. But I need to make it in the aforementioned format. I also tried
awk 'BEGIN { ORS= " "} {print}' test.txt | tr ' ' '\n'
but it seems tr
does not consider double whitespaces and the result comes:
1
2
3
4
5
6
What can I do?
PS In the file there is one newline between 1 and 2 and 4 and 5 and so on and two newlines between 2 and 3 and 4 and 5 and so on. Due to limited knowledge in this editor I am not able to print that way.
If your file is called
test.txt
, you can do