Mercurial > getan
view scripts/convert-projects @ 433:266634f3712a
Improves command line options.
* Adds option '--init-only' which will non-interactively just
create the databasefile if it does not exits. This is useful if you want
to add tasks non-interatively. It allows to remove the superfluous file
`schema.sql` which duplicates the build-in schema in `backend.py`.
author | Bernhard Reiter <bernhard@intevation.de> |
---|---|
date | Thu, 07 Sep 2017 17:08:23 +0200 |
parents | 20fde79f8e12 |
children |
line wrap: on
line source
#!/usr/bin/awk -f # Convert classic worklog projects file to SQL statements for inseration in the getan database. # USAGE: # ./convert-projects </PATH/TO/projects | sqlite3 time.db BEGIN { FS=":"; } /[^# \t]/ { printf "INSERT INTO projects (key, description) VALUES ('%s', '%s');\n", $1, $2; }