installed_progs.t: Python checks stdout too, 150 ok
[sunny256-utils.git] / find-sqlite
blobe944385982bc774b36b2853167b734e137a6ad5c
1 #!/bin/sh
3 # find-sqlite
4 # File ID: 5c05f2ce-dab9-11e7-8d38-f74d993421b0
6 find "$@" -type f | while read f; do
7 test "$(head -c 13 "$f")" = "SQLite format" && echo $f
8 done