load csv from all filenames matching ~ (id, field) into postgresql:///pgloader?matching with fields optionally enclosed by '"', fields terminated by ',', truncate before load do $$ drop table if exists matching; $$, $$ create table matching(id int, field text); $$;