# SYNOPSIS
Concatenate one or many csv files into one
# INSTALL
$ s6 --install csv_concat
# USAGE
## Raku
```raku
#!raku
task-run "concat files", "csv_concat", %(
files => dir(test => /".csv"/).map({$_.path}).sort,
out => "/tmp/out.csv"
);
```
# Parameters
## files
List of files
## out
Where to dump resulted file, path
# Author
[Alexey Melezhik](mailto:melezhik@gmail.com)