LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Want to transpose the text file content (https://www.linuxquestions.org/questions/linux-newbie-8/want-to-transpose-the-text-file-content-4175475683/)

sekaranarun 09-03-2013 04:50 AM

Want to transpose the text file content
 
Thanks in advance
Im trying to get shell script or perl to do below transpose of txt file

Input file:
caption 'BLR-2F04-PS1',
'ip_address' '10.37.11.145',
'watt_hour' '1714360000',
'apparent_power''1089.6',
'active_power' '1067',
'caption' 'BLR-3B04-PS2',
'ip_address' '10.37.73.8',
'watt_hour' '6807120000',
'apparent_power''3690',
'active_power' '3681',

I require output like below, please help out of this.

'caption' 'ip_address' 'watt_hour' 'apparent_power' 'active_power'
'BLR-2F04-PS1', '10.37.11.145', '1714360000', '1089.6', '1067',
'BLR-3B04-PS2', '10.37.73.8', '6807120000', '3690', '3681',

Thanks again

TenTenths 09-03-2013 06:18 AM

So what have you tried so far? We're not here to do your homework assignment for you.


All times are GMT -5. The time now is 04:59 PM.