darold / pgFormatter

A PostgreSQL SQL syntax beautifier that can work as a console program or as a CGI. On-line demo site at http://sqlformat.darold.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Run recursively on directory

kevinmichaelchen opened this issue · comments

Is it possible to run this recursively on all SQL files under a directory?

Something like that should do the work:

find mydir/ -name '*.sql' | xargs -i pg_format -o {}.out {}

the formatted files will have the extension .out or if you want to override the existing SQL files you can do something like that:

find mydir/ -name '*.sql' | xargs -i pg_format -i {}