awesome-bashrc
awesome-bashrc copied to clipboard
find strings from a file in all files of a directory
for entry in "$1"/**/*.js
do
echo $entry
while read -r line;
do cat $entry | grep -n $line;
done < $2
done