in reply to How do I merge every csv file in the directory?

See glob:
my @filenames = glob '*.csv';
Or, you can use bash:
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

    For windows, replace cat with type: type *.csv > out.txt

Re^2: How do I merge every csv file in the directory?
by luxlunae (Novice) on Jun 28, 2012 at 13:12 UTC
    Thanks!