repo.or.cz
/
sunny256-utils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Upgrade yt-dlp from version stable@2023.07.06 to stable@2023.09.24
[sunny256-utils.git]
/
find-sqlite
blob
e944385982bc774b36b2853167b734e137a6ad5c
1
#!/bin/sh
2
3
# find-sqlite
4
# File ID: 5c05f2ce-dab9-11e7-8d38-f74d993421b0
5
6
find
"$@"
-type
f |
while
read
f
;
do
7
test
"$(head -c 13 "
$f
")"
=
"SQLite format"
&&
echo
$f
8
done