func_local2.tests 126 B

1234567
  1. x=1
  2. f() { echo $x; local x=$((x+1)); echo $x; }
  3. g() { f; echo $x; f; local x=$((x+1)); f; echo $x; f; }
  4. f
  5. g
  6. echo $x
  7. echo Done