Open kevinmichaelchen opened 1 year ago
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 {}
Is it possible to run this recursively on all SQL files under a directory?