|
From: walter h. <wh...@bf...> - 2012-02-04 19:10:10
|
Am 03.02.2012 18:03, schrieb Jon: > Thanks. Your answer enlightened me to use the right keyword to google, > which returned an answer saying that I need external tools to transpose the > text data first. Then, this boils down to a linux question, how can I > possibly transpose a datafile with indefinite entries per row. > > Any easy solution to that? Or maybe I just program a little bit on it. > > Jon hi Jon, the question is how your data are organised. i guess transpose means: X X X X X -> X X X X X then you can simply do: tr " " "\n" <in >out re, wh |