1 #!/bin/bash 2 # ex62.sh: Global and local variables inside a function. 3 4 func () 5 { 6 local loc_var=23 # Declared as local variable. 7 echo # Uses the ' ...
確定! 回上一頁