From 5db2e1fd4de81756b8d447d6a532936f1da04897 Mon Sep 17 00:00:00 2001 From: Semen Zhydenko Date: Sun, 4 Feb 2018 17:18:44 +0100 Subject: [PATCH] funtion -> function --- languages/bash.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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