catdoc (in C)

The first command line tool we are going to talk about is catdoc. The tool is written in C by V.B. Vagner.

1.1 How to install it:

Download the tool from here.  Go to your downloads directory and untar it. You can use the following commands (in case you are facing problem): Now we have a catdoc-0.94.2 directory. Go inside this directory and run the following commands to install it: The installation is an easy process and you should not face any problem here.

1.2 How to use it:

There are several option to run the command. I’ll tell the options that works best for the Microsoft Excel conversion: Note the option “-s” and “-d” (stands for source and destination). These options are used to specify which character encoding is used in the source file and what would be the character encoding for the destination file. Here I have used cpl1252 which is Microsoft character encoding and 8859-1 which is used for Western European character encoding. You can use what other options are available by using the help command.

1.3 Pros and Cons:

Pros: Straight forward installation Cons: No selective conversion in multiple sheet scenario, it coverts all the sheets present in the xls file (one workaround would be to explicitly specify a footer in each sheet and then use option -b in the command), problems with few European characters, problem with date fields (the date fields are messed up big times), messes with quotes.

xls2csv (in Perl)

The second tool we are going to talk about is a Perl script xls2csv written by Ken Prows in Perl.

2.1 How to install it:

Download the script here. Gunzip and tar it like we did in previous section and go the extracted directory and use the following commands to install it: Remember this Perl script uses a number of other Perl modules: While installing xls2csv, it will give error that the mentioned perl modules have not been installed. It will ask you to download the modules. Download and install these modules when asked. All these module installation requires root privileges. If you do not have root access, then you should follow the instruction given here to install a Perl module.

2.2 How to use it:

The following command can be used to convert Microsoft excel to csv: Option x and c (means xls and csv) are used to specify the input and output files where as b and a (means before and after) are used to specify the respective character encoding. We have use the same character encoding as in previous tool.

2.3 Pros and cons:

Pros: Good with western European character conversion and date fields, supports selective multiple sheet conversion, Cons: Several Perl modules need to be installed, first cell should not be empty (otherwise it skips the whole row), messes with quotes There are couple of other ways as well. Some scripts in Python and Java are also available to use but they are not as good as these two discussed here. I hope the article solves your problem. Question and suggestions are always welcomed. Cheers :)