Search Results

Search: Posts Made By: Shubham1182
2,212
Posted By Don Cragun
In case your column count isn't always two or the...
In case your column count isn't always two or the row count isn't the same in all columns, you could also try:
awk '
BEGIN { ncol = row = 0
}
/^$/ { ncol++
if(row > maxrow)
maxrow = row...
2,212
Posted By nezabudka
pr -mts$'\t' <(sed '/^$/,$d' file) <(sed...
pr -mts$'\t' <(sed '/^$/,$d' file) <(sed '1,/^$/d' file)
a different order would be easier
fmt file | column -t
But I understand the elementary example has a more complex structure?

--- Post...
2,849
Posted By Jairaj
Is that something like below command you are...
Is that something like below command you are expecting ?

tr ' ' '\n' < File.txt
2,849
Posted By RudiC
What do you mean by "column wise"? As far as I...
What do you mean by "column wise"? As far as I can see, there is just one column?
2,849
Posted By Jairaj
Provide required input and output to help you
Provide required input and output to help you
Showing results 1 to 5 of 5

 
All times are GMT -4. The time now is 01:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy