can we display the file contents in vertical order...by using linux command?
migrated from stackoverflow.com Nov 5 '09 at 14:51
This question came from our site for professional and enthusiast programmers.
|
or are you looking to display the directory contents in vertical order with something like:
| |||||
feedback
|
|
Not clear exactly what you want here, but the "pr" command will allow formatting of content for printing, e.g. display in multiple columns. Try a "man pr" and see if it helps you. | |||
|
feedback
|
|
Do you mean literally to take each line and make it one character wide? So that 'this' becomes: t h i s | |||
|
feedback
|
|
A neat trick to accomplish what Telemachus mentioned is:
| |||
|
feedback
|

cat fileA fileB fileC? – Telemachus Nov 5 '09 at 14:54