Skip to content

Instantly share code, notes, and snippets.

@kijart
Created May 1, 2020 10:10
Show Gist options
  • Save kijart/f7e258ee2f86f0780d6821caa30f3662 to your computer and use it in GitHub Desktop.
Save kijart/f7e258ee2f86f0780d6821caa30f3662 to your computer and use it in GitHub Desktop.
Repair malformed sqlite database: https://stackoverflow.com/a/15874884
#!/bin/bash
# usage $0 database.sqlite3
cat <( sqlite3 "$1" .dump | grep "^ROLLBACK" -v ) <( echo "COMMIT;" ) | sqlite3 "fix_$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment