16 lines
451 B
Bash
Executable file
16 lines
451 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ ! "$(which ag)" ]; then
|
|
echo '+----------------------------------------------------+'
|
|
echo '| The Silver Searcher is not found. Go get it tiger! |'
|
|
echo '| |'
|
|
echo '| https://github.com/ggreer/the_silver_searcher |'
|
|
echo '+----------------------------------------------------+'
|
|
exit 1
|
|
fi
|
|
|
|
ag --nocolor --noheading "$@"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo 'Not found'
|
|
fi
|