diff options
| author | danix <danix@danix.xyz> | 2023-04-14 09:32:15 +0200 |
|---|---|---|
| committer | danix <danix@danix.xyz> | 2023-04-14 09:32:15 +0200 |
| commit | b1e2a0183a9b5b587968f2ab77ac5952331d1972 (patch) | |
| tree | e5b0fc44e1fe1e49626d71bf40559ad2319429a3 /SOURCE/CORE/helpers.sh | |
| parent | 87a368fe55efdd2cba599e07f29786a3ad745310 (diff) | |
| download | bash-notes-b1e2a0183a9b5b587968f2ab77ac5952331d1972.tar.gz bash-notes-b1e2a0183a9b5b587968f2ab77ac5952331d1972.zip | |
removed the 'function' keyword before declaring a function as is not needed.
Diffstat (limited to 'SOURCE/CORE/helpers.sh')
| -rw-r--r-- | SOURCE/CORE/helpers.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/SOURCE/CORE/helpers.sh b/SOURCE/CORE/helpers.sh index 567846b..b7b9180 100644 --- a/SOURCE/CORE/helpers.sh +++ b/SOURCE/CORE/helpers.sh @@ -1,5 +1,5 @@ # check if input is a number, returns false or the number itself -function check_noteID() { +check_noteID() { IN=$1 case $IN in ''|*[!0-9]*) @@ -11,7 +11,7 @@ function check_noteID() { esac } -function helptext() { +helptext() { echo "Usage:" echo " $0 [PARAMS] [note ID]..." echo "" @@ -33,7 +33,7 @@ function helptext() { echo -e "if a non option is passed and is a valid note ID, the note will be displayed." } -function configtext() { +configtext() { cat << __NOWCONF__ ${BASENAME} configuration is: @@ -52,7 +52,7 @@ __NOWCONF__ } # this function returns a random 2 words title -function random_title() { +random_title() { # Constants X=0 DICT=/usr/share/dict/words |
