Bash Scripting - String Operations
What will be the output of the following bash script?
text="Hello World"
echo ${#text}text="Hello World"
echo ${#text}echo ${#text} prints the length, which is 11.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions