Last active
November 14, 2019 14:06
-
-
Save castexyz/e5355294e65bbca42630f49bb68a34f5 to your computer and use it in GitHub Desktop.
find strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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