1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-21 11:16:26 +02:00
fastnetmon-rewritten/src/grep.sh

11 lines
188 B
Bash
Raw Permalink Normal View History

2022-03-13 16:18:21 +01:00
#!/bin/bash
script_dir=`dirname "$0"`
find $script_dir/.. -type f | egrep -v 'fastnetmon.pb.cc|.git|build'> /tmp/file_list
for i in `cat /tmp/file_list` ; do
grep -Hi "$1" $i
done