improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / 1.gmr / func / func4.sub
blobaa0a8b69b9653670c5bf20cb377fb9deda11e90d
1 #   This program is free software: you can redistribute it and/or modify
2 #   it under the terms of the GNU General Public License as published by
3 #   the Free Software Foundation, either version 3 of the License, or
4 #   (at your option) any later version.
6 #   This program is distributed in the hope that it will be useful,
7 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
8 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9 #   GNU General Public License for more details.
11 #   You should have received a copy of the GNU General Public License
12 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
14 # test FUNCNEST functionality -- bush-4.2
15 FUNCNEST=100
17 foo()
19         (( f++ ))
20         if (( f > 200 )); then
21                 return 7
22         fi
23         foo
26 f=0
27 foo
28 echo $?
29 echo after: f = $f
31 f=0
32 foo
33 echo $?
34 echo after: f = $f
36 f=0
37 FUNCNEST=0
38 foo
39 echo $?
40 echo after FUNCNEST reset: f = $f
42 f=0
43 unset FUNCNEST
44 foo
45 echo $?
46 echo after FUNCNEST unset: f = $f
48 FUNCNEST=20
49 f=$(( FUNCNEST - 2 ))
50 foo
51 echo $?
52 echo after FUNCNEST assign: f = $f