in reply to How do I merge every csv file in the directory?
Or, you can use bash:my @filenames = glob '*.csv';
cat *.csv > output.txt
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do I merge every csv file in the directory?
by SuicideJunkie (Vicar) on Jun 27, 2012 at 18:10 UTC | |
|
Re^2: How do I merge every csv file in the directory?
by luxlunae (Novice) on Jun 28, 2012 at 13:12 UTC |