1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-01 12:20:48 +00:00

funtion -> function

This commit is contained in:
Semen Zhydenko 2018-02-04 17:18:44 +01:00
parent 2cd1e38b0e
commit 5db2e1fd4d

View File

@ -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