Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 443 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 443 Bytes

An attempt to emulate Unix grep using Python, as part of a learning exercise.

--Help--
./grep.py -h

implements the following options:
-n : Print the pattern match along with line numbers.
-r : Performs pattern match recursively.
-i : Performs the match ignoring the case of the pattern.
--binary : Peforms the pattern match in Binary files.

Features Implemented:
--Configuration file.
--Logging.