You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- @rem this file is in the Public Domain
- @echo off
-
- if exist system.db del /f system.db
- sqlite3 -batch system.db < create_system_db.sql
- for %%c in (*.csv) do echo %%c && echo .import "%%c" wordlist | sqlite3 -batch -csv system.db
|