The files sizes might be over 1GB. I can write a script, but I wonder if there is a simple way, for example using Windows Command Promt? Thanks

link|improve this question

62% accept rate
Load it in Excel, delete the column, re-save it. – Mohamed Nuur Jul 13 '11 at 8:49
What's wrong with your script solution? Reading a line at a time and then writing a new file removing a column is a good solution which will not use much memory (although you need storage space for filesize * 2, which shouldn't be an problem.) – Tony Jul 13 '11 at 8:52
feedback

1 Answer

up vote 1 down vote accepted

I used the following solution:
1. Install FileUtils package from GnuWin32 project.
2. run command in command promt:

cut -f<idxColumn> --complement -d,  <inputFile>  >  <outputFile>


For example:

cut -f3 --complement -d, d:/in.csv > d:/out.csv

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.