Bash Scripting - Functions
Consider this script:
What will be the output and why?
#!/bin/bash
count=0
increment() {
local count=$((count + 1))
echo $count
}
increment
increment
echo $countWhat will be the output and why?
