aboutsummaryrefslogtreecommitdiffstats
path: root/bin/dev_tools/quick_find.sh
blob: cf200106d2c64d55f094bf1efd85e68e8c194d1c (plain)
1
2
3
4
5
6
7
#!/bin/bash

# SRTool helper script to quickly find strings in the source

find bin -exec grep -l "$1" {} \; 2> /dev/null
find lib -exec grep -l "$1" {} \; 2> /dev/null