Differences From Artifact [ae5555fb0a]:
- 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]
To Artifact [09b9e5e09c]:
- Executable file utils/mt-new-to-old.sh — part of check-in [be8e6a1b38] at 2022-06-10 23:36:27 on branch v1.70 — Changed .db directories to .megatest (user: mmgraham, size: 184) [annotate] [blame] [check-ins using] [more...]
1 2 | #!/bin/bash | | | | 1 2 3 4 5 6 7 8 | #!/bin/bash cp .megatest/main.db megatest.db for db in $(ls .megatest/?.db); do echo $db sqlite3 $db "SELECT * FROM tests" | sqlite3 megatest.db ".import /dev/stdin tests" done |