Home » Questions » Computers [ Ask a new question ]

Extracting *.csv from a hundred zips and appending results

Extracting *.csv from a hundred zips and appending results

What would be an efficient way to extract only all of the *.csv files (not other files inside) from inside a hundred zip files in a single directory? Then I need to make one large file with each CVS file appended together although stripping off header line 1 from files 2,...,n.

Asked by: Guest | Views: 128
Total answers/comments: 1
Guest [Entry]

"but how about dropping the header?

With the unix 'head' command (from mingw, opench or a bunch of other utils) you can use ""head -n"" to show all but the first 'n' lines"