Data Conversion Using Sed or Awk - Name to Title
问题 I have data in the below format: APP_OWNER : hari APP_AREA : Work:Business Area:AUS APP_ID : 124080 APP_OWNER : ari APP_AREA : Work:AUS APP_ID : 124345 I want the data to be converted to below format. APP_OWNER,APP_AREA,APP_ID hari,Work:Business Area:AUS,124080 ari,Work:AUS,124345 I can convert one line but how to do it with 3 lines at the same time? My Attempt with one line sed '0,/: /s//\n/' test.txt Original Question : Convert Rows to Columns Shell Script Regards 回答1: Here is an awk