Writing to an excel sheet using Bash

Viewed 70229

Is it possible to write to an excel sheet(any type) from a bash script ?

What I am looking for is something along these lines :

sed -e :a -e '$!N; s/\n/ /; ta' file.c > #( first coloumn ,second row of the spread sheet ) 
echo "$cdvar" > #( second coloumn ,third row of the spread sheet ) 

Thank you for your replies and suggestion .

2 Answers
Related