Fix notegrep output bug
This commit is contained in:
parent
7873536b92
commit
56eb26ce57
1 changed files with 15 additions and 17 deletions
|
@ -170,26 +170,24 @@ function notegrep() {
|
|||
. ~/.shellnotes/util/notegrep/sf.sh
|
||||
;;
|
||||
esac
|
||||
return 0
|
||||
|
||||
|
||||
if [ -z $notename ]; then
|
||||
echo "Invalid input."
|
||||
cd $DIR
|
||||
return 0
|
||||
|
||||
elif [ -z $regex ]; then
|
||||
echo "No pattern given."
|
||||
cd $DIR
|
||||
return 0
|
||||
fi
|
||||
|
||||
|
||||
do_grep
|
||||
|
||||
fi
|
||||
|
||||
if [ -z $notename ]; then
|
||||
echo "Invalid input."
|
||||
cd $DIR
|
||||
return 0
|
||||
|
||||
elif [ -z $regex ]; then
|
||||
echo "No pattern given."
|
||||
cd $DIR
|
||||
return 0
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
do_grep
|
||||
|
||||
unset GREP_OPTIONS
|
||||
unset -f check_params
|
||||
unset -f do_grep
|
||||
|
|
Loading…
Reference in a new issue