![]() |
|
|
|
|
|||||||
| UNIX and Linux Applications Questions involving software not covered by other forum go here. This includes Databases and Middleware. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to handle Microsoft Excel in Linux Scripting | envisage | Shell Programming and Scripting | 2 | 02-04-2008 10:17 AM |
| reading data from excel using shell script | tiger99 | Shell Programming and Scripting | 11 | 01-05-2008 09:35 PM |
| reading/ writing to sockets | rein | Shell Programming and Scripting | 1 | 09-20-2007 05:57 PM |
| Reading and Writing file on LAN | lucky001 | High Level Programming | 3 | 03-30-2007 11:16 AM |
| Reading and Writing Files ? | tracydp | UNIX for Dummies Questions & Answers | 3 | 08-30-2006 07:24 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Reading and Writing from Excel using Unix scripting
Hi All,
I want to read and write into Excel files. I want my script to generate the required output directly in the Excel format. Is it possible through unix scripting or shall I have to use some other language for this purpose? Waiting for your suggestion. Thanks in Advance. AshishK |
| Forum Sponsor | ||
|
|
|
||||
|
If you "cat" an .xls file, you will notice that unix understand it as binary file, and you won't see relevant content. Instead, you can rely on "comma separated value format" and alter such file. Otherwise, you can use Excel's macros, thus putting yourself in need of writing on Visual basic.
|