Hello,
I own
input
and I would like to get
Output
I would like to be able to move lines of a file down according to the number of columns whether with an awk or a sed but without relying on the line number
If anyone had an idea! Thank you very much !
I own
input
Code:
AB-0004 XXX XXX
A8-0005 XXX
AB-0007 XXX XXX
AB-0008 XXX
and I would like to get
Output
Code:
AB-0004 XXX XXX
AB-0007 XXX XXX
A8-0005 XXX
AB-0008 XXX
I would like to be able to move lines of a file down according to the number of columns whether with an awk or a sed but without relying on the line number
If anyone had an idea! Thank you very much !