Skip to content

Instantly share code, notes, and snippets.

@emmasteimann
Created July 5, 2012 02:15
Show Gist options
  • Save emmasteimann/3050625 to your computer and use it in GitHub Desktop.
Save emmasteimann/3050625 to your computer and use it in GitHub Desktop.
Open all SQLite files in directory in Base
for i in * ; do file $i; done| grep SQLite | awk '{print "open -a base " $1}' | sed 's/://g' | sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment