Skip to content

Instantly share code, notes, and snippets.

@muthuishere
Created August 4, 2024 04:37
Show Gist options
  • Save muthuishere/25534cada1b27c467bd0fcb394efa53c to your computer and use it in GitHub Desktop.
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
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