gossip/filescontaining.sh

5 lines
134 B
Bash
Raw Normal View History

2022-12-20 05:28:45 +00:00
#!/bin/bash
find . -name .git -prune -o -name target -prune -o -type f -exec grep -H "$1" {} \; \
| awk -F: '{print $1}' | uniq