diff --git a/languages/bash.sh b/languages/bash.sh index 114e344..345beab 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -154,7 +154,7 @@ ${#array[i]} # to find out the length of any element in the arra ${#array[@]} # to find out how many values there are in the array declare -a # the variables are treaded as arrays -declare -f # uses funtion names only +declare -f # uses function names only declare -F # displays function names without definitions declare -i # the variables are treaded as integers declare -r # makes the variables read-only