psql_csv/push_all.sh

10 lines
110 B
Bash
Raw Normal View History

2020-05-01 01:17:12 -04:00
#!/bin/bash
getlist() {
find . -iname "*.csv" | while read f
do
printf $f
done
}
getlist