i am creating an excel file through shell script.the data should be in 4 columns, but the output data came in one column.

Please help to resolve this.

link|improve this question
1  
We need to see your script. – Jeremy Jul 19 '11 at 14:01
And also your data. – paxdiablo Jul 19 '11 at 14:01
Post some code. you should mention in your script which column in excel sheet will hold what data – Rahul Jul 19 '11 at 14:05
feedback

1 Answer

Create a comma-separated values file. Perhaps, depending on your delimiters:

some process creates colon-separated data | while IFS=: read v1 v2 v3 v4; do
    printf "\"%s\",\"%s\",\"%s\",\"%s\"\n" \
        "$(sed 's/"/""/g' <<< "$v1")" \
        "$(sed 's/"/""/g' <<< "$v2")" \
        "$(sed 's/"/""/g' <<< "$v3")" \
        "$(sed 's/"/""/g' <<< "$v4")" \
    >> my_data.csv
done
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.