Created
August 4, 2024 04:37
-
-
Save muthuishere/25534cada1b27c467bd0fcb394efa53c to your computer and use it in GitHub Desktop.
A Script to find text containing PeerConnection in javascript files and within subfolders excluding .git and node_modules folder and with gnu parallel for
This file contains hidden or 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
find . -type d \( -name .git -o -name node_modules \) -prune -o -type f -name "*.js" -print | parallel grep -H "PeerConnection" {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment