Skip to content

Instantly share code, notes, and snippets.

@castexyz
Last active November 14, 2019 14:06
Show Gist options
  • Save castexyz/e5355294e65bbca42630f49bb68a34f5 to your computer and use it in GitHub Desktop.
Save castexyz/e5355294e65bbca42630f49bb68a34f5 to your computer and use it in GitHub Desktop.
find strings
Windows
find string ignoring case (/i) on current folder and subfolders (/S) with specific file extension
findstr /i "<string>" *.<file extension>
dir /s /b >all-files.txt
findstr "\.db \.sqlitedb \.sqlite3 \.sqlite \.storedata \.store \.sql \.kcr" all-files.txt > all-databases.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment