Brings the power of search to your terminal, so that you don't have to leave while coding.
- Clone this repo
- Cd into the folder
- Complile using clang
clang -o search.exe main.c - Add the folder location to the system path variable
Now to use this app simply use search and type anything you want to search
demo.mp4
- Do not use gcc to complie. It uses strcat_s which is only available in clang. If you want to use gcc try changing it to strcat and removing buffer size. Doing this may increase the chance of buffer overflow.