You are given a text file that will be piped into your command through STDIN. Use grep to display all those lines that contain the word the in them. Given a text file, which will be piped to your ...
grep -i -c "Dog" animal.txt # get count of matching lines grep -w "Dog" animal.txt # get all matching lines by matching whole word grep -v "Dog" animal.txt # get all non matching lines # The JSON ...