GitHub - laktak/zfind: search for files (even inside tar/zip) using a SQL-WHERE filter
zfind
zfind allows you to search for files, including inside tar and zip archives. It makes finding files easy with a filter syntax that is similar to an SQL-WHERE clause.
Basic Usage
Examples
# find files smaller than 10KB
zfind -w 'size<10k'
# find files modified before 2010 inside a tar
zfind -w 'date<"2010" and archive="tar"'
# find files named *.go and modified today
zfind -w 'name like "%.go" and date=today'
# find directories named foo and bar
zfind -w 'name in ("foo", "bar") and type="di...
Read more at github.com