Artifact ae5555fb0af85b2cae30a5e47ccd061e6d665fe7:
- Executable file utils/mt-new-to-old.sh — part of check-in [a0a226d3f4] at 2022-06-10 20:05:19 on branch v1.70 — Added /utils/mt-new-to-old.sh and mt-old-to-new.sh for converting megatest.db to/from main.db, 1.db etc (user: mmgraham, size: 172) [annotate] [blame] [check-ins using]
#!/bin/bash cp .db/main.db megatest.db for db in $(ls .db/?.db); do echo $db sqlite3 $db "SELECT * FROM tests" | sqlite3 megatest.db ".import /dev/stdin tests" done