Matches patterns in input text Supports simple patterns and regular expressions
grep {{something}} {{file_path}}
grep -r {{something}} .
grep -e {{^regex$}} {{file_path}}
grep -C 3 {{something}} {{file_path}}
grep -c {{something}} {{file_path}}
cat {{file_path}} | grep {{something}}
grep -v {{something}}