Closed
Description
I am using Bash IDE in VSCode and below code shows as invalid code while it is valid code
TEST_VAR=1
TEST_VAR1=1
declare -a list_of_variables=("TEST_VAR" "TEST_VAR1")
for var in ${list_of_variables[@]}
do
echo "${var}=${!var}"
done
When I hover over !
char then it show 'Failed to parse expression' in tooltip