Newer
Older
FirstProject / findgrep
@Motoki Miura Motoki Miura on 11 Oct 2021 206 bytes first commit
#!/bin/bash

find . -type d -name 'node_modules' -prune -o  -type d -name '.cache' -prune -o  -type d -name '.git' -prune -o   -type d -name '.meteor' -prune -o  -type f -exec grep -dskip $1 {} \; -print