initial formatting script
Arthur Axel "fREW" Schmidt [Sat, 4 Sep 2010 03:31:51 +0000 (03:31 +0000)]
script/format-sql [new file with mode: 0755]

diff --git a/script/format-sql b/script/format-sql
new file mode 100755 (executable)
index 0000000..86d008b
--- /dev/null
@@ -0,0 +1,7 @@
+#!/usr/bin/env perl
+
+use SQL::Abstract::Tree;
+
+my $sqlat = SQL::Abstract::Tree->new({ profile => 'console' });
+
+print $sqlat->format($_) . "\n" while <>;