acme/bin/f

17 lines
451 B
Text
Raw Normal View History

2017-08-16 15:37:57 +03:00
#!/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 "$@"
2017-08-16 19:38:33 +03:00
if [ $? -ne 0 ]; then
2018-01-19 01:44:50 +03:00
echo 'Not found'
2017-08-16 19:38:33 +03:00
fi