# crapgrep Have you ever wanted to use a poorly-written, less-featured, slower replacement for an existing [powerful tool?](https://www.gnu.org/software/grep/) Then this is for you... ## What is this? `crapgrep` is a poor imitation of the Unix utility `grep` written in Python. More specifically, it's a command line tool to search for a pattern or a substring in each line of one or more text files. The command synopsis is very similar to `grep`, although it needs the Python interpreter to be invoked explicitly (at the moment, at least): ``` python crapgrep.py [OPTIONS] [PATTERN] [FILE[...]] ``` _**Note**: obviously, `crapgrep` doesn't read from `stdin`, which makes it even more useless..._ ## Installation If you like wasting time because apparently you have nothing better to do, you can try `crapgrep` by cloning the repository with `git`: ```bash git clone https://baltig.cnr.it//nicolo.paraciani//crapgrep.git ``` then ```bash cd crapgrep python crapgrep.py