Bash Scripting - Quoting and Expansion
What will be the output of the following bash script?
#!/bin/bash x=5 y=3 result=$((x * y + 2)) echo $result
#!/bin/bash x=5 y=3 result=$((x * y + 2)) echo $result
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions