a0f005d70ecb78a51580a8247a1755f9c53e74d2 galt Mon Jun 13 16:23:42 2016 -0700 Initial check-in of geoIp basics. diff --git src/hg/geoIp/make-sql src/hg/geoIp/make-sql new file mode 100755 index 0000000..22eb4a6 --- /dev/null +++ src/hg/geoIp/make-sql @@ -0,0 +1,10 @@ +#!/bin/tcsh +# we want to use autoSql to make the .sql +# which is handy for initializing empty tables +# but we do not need the .c and .h files at this time. +foreach f ( *.as ) + echo $f + autoSql $f $f:r + rm $f:r.c + rm $f:r.h +end