1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-05-03 22:26:30 +02:00
fastnetmon-rewritten/src/grep.sh
2022-03-13 17:18:21 +02:00

11 lines
188 B
Bash
Executable File

#!/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