Skip to content

Commit

Permalink
Silly utility to take a block of lines and create the necessary SQL d…
Browse files Browse the repository at this point in the history
…escribe clause to look inside them
  • Loading branch information
leto committed Apr 24, 2013
1 parent 21b700c commit 71ad18b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bin/describify
Original file line number Diff line number Diff line change
@@ -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";
}

0 comments on commit 71ad18b

Please sign in to comment.