Show HN: Xsearch –a bash command line tool to search for a keyword in a folder
1–6 of 6 posts
Re: Show HN: Xsearch –a bash command line tool to search for a keyword in a folder
#2Why rewrite as a 100+ lines of bash with multiple program invocations?
Re: Show HN: Xsearch –a bash command line tool to search for a keyword in a folder
#3Why not... grep -R -n ... and it's other options...? Why rewrite as a 100+ lines of bash with multiple program invocations?
Re: Show HN: Xsearch –a bash command line tool to search for a keyword in a folder
#4Why not... grep -R -n ... and it's other options...? Why rewrite as a 100+ lines of bash with multiple program invocations?
yeah, it is indeed! i just been thinkering about it, and i just got an idea to try another way to do it, and maybe package for people who aren't familiar with shell commands.
Re: Show HN: Xsearch –a bash command line tool to search for a keyword in a folder
#5Earlier quoted context omitted.
yeah, it is indeed! i just been thinkering about it, and i just got an idea to try another way to do it, and maybe package for people who aren't familiar with shell commands.
Someone unfamiliar with shell commands will likely have just as much difficulty finding, installing, and using your script/package.
Re: Show HN: Xsearch –a bash command line tool to search for a keyword in a folder
#6Earlier quoted context omitted.
yeah, it is indeed! i just been thinkering about it, and i just got an idea to try another way to do it, and maybe package for people who aren't familiar with shell commands.
Someone unfamiliar with shell commands will likely have just as much difficulty finding, installing, and using your script/package.
An alias like alias xsearch="grep -rnw -e" would probably replace what you just built and I hope anyone able to install your script could at least figure out how to edit and source their .bashrc file.