Hello i have this file.txt
a=a
b=b
c=c
d=d
e=e
f=f
. etc (about 150 rows)
I need the output to be:
a b c d e f ....
a b c d e f ....
I already tried using paste -d " " - - < file.txt
but i need something to work with huge number of rows to columns.
Thank you in advance.