We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 399bea3 commit a3d7cf6Copy full SHA for a3d7cf6
sh/finding-sqlite-dbs.md
@@ -0,0 +1,9 @@
1
+# Find sqlite dbs
2
+
3
+Lots of applications use sqlite dbs. It can be useful to try and find them all. For this you can use the following command
4
5
+```
6
+find . -type f -exec sh -c 'head -c 16 "$1" 2>/dev/null | grep -q "^SQLite format" && echo "$1"' _ {} \;
7
8
9
+as all sqlite files start with the header string: "SQLite format 3\000" , see: [Database File Format](https://www.sqlite.org/fileformat.html)
0 commit comments