From 6def8d73ddf9d1937804e261ea1707a97a341f3e Mon Sep 17 00:00:00 2001 From: Ryan Greenup Date: Wed, 15 Jul 2020 01:00:01 +1000 Subject: [PATCH] Indicates whether function will print menu or run --- bin/cadmus | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/cadmus b/bin/cadmus index ed8ee70..a3d4599 100755 --- a/bin/cadmus +++ b/bin/cadmus @@ -43,8 +43,8 @@ function mainHelp() { echo -e " \e[1;91m \e[1m Command \e[0m\e[0m \e[1;34m┊┊┊ \e[0m Description " echo -e " ..............\e[1;34m┊┊┊\e[0m........................................... " - echo -e " 🔍 \e[1;93m find \e[0m \e[1;34m ┊┊┊ \e[0m Find Notes based on FileName" - echo -e " 🔎 \e[1;32m search \e[0m \e[1;34m ┊┊┊ \e[0m Search through Notes using Recoll" + echo -e " 🔍 \e[1;93m find \e[0m \e[1;34m ┊┊┊ 🎆 \e[0m Find Notes based on FileName" + echo -e " 🔎 \e[1;32m search \e[0m \e[1;34m ┊┊┊ 📁 \e[0m Search through Notes using Recoll" echo -e " 🏷 \e[1;33m tags \e[0m \e[1;34m ┊┊┊ \e[0m Use TMSU to work with tags" echo -e " 🔧 \e[1;34m tools \e[0m \e[1;34m ┊┊┊ \e[0m Tools for Editing" echo -e " 📝 \e[1;35m export \e[0m \e[1;34m ┊┊┊ \e[0m Export Notes to Different Formats " @@ -98,7 +98,6 @@ arguments () { function NoteFind() { - [[ -z "${@}" ]] && NoteFind.sh -h && exit 0 NoteFind.sh "${@:-}" exit 0 }