pgFormatter
pgFormatter copied to clipboard
Run recursively on directory
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 {}