Bash Scripting - Variables
What does the command
declare -i num=5 do in a bash script?declare -i num=5 do in a bash script?declare -i command in bash makes a variable hold integer values only.num is assigned the integer value 5, so it becomes an integer variable.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions