Browse Source

Silly utility to take a block of lines and create the necessary SQL describe clause to look inside them

master
Jonathan "Duke" Leto 11 years ago
parent
commit
71ad18b5cf
  1. 11
      bin/describify

11
bin/describify

@ -0,0 +1,11 @@
#!/usr/bin/env perl
# convert a git:// protocol string to an ssh protocol string
# very useful in visual select mode from vim
use strict;
use warnings;
while(my $table = <>){
print "describe $table;\n";
}
Loading…
Cancel
Save