psql_csv/push_all.sh
2020-05-01 01:58:41 -04:00

10 lines
170 B
Bash

#!/bin/bash
getlist() {
find . -iname "*.csv" | while read f
do
$PG -c "\copy import.targ_rev FROM $f WITH CSV HEADER DELIMITER ',';"
done
}
getlist