pEpEngine/db/make_systemdb.cmd

7 lines
234 B
Batchfile
Raw Normal View History

2016-12-27 21:13:41 +01:00
@rem this file is in the Public Domain
2016-02-23 16:39:28 +01:00
@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