]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/dtracetoolkit/Code/Shell/func_abc.sh
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / cddl / contrib / dtracetoolkit / Code / Shell / func_abc.sh
1 #!./sh
2
3 func_c()
4 {
5         echo "Function C"
6         sleep 1
7 }
8
9 func_b()
10 {
11         echo "Function B"
12         sleep 1
13         func_c
14 }
15
16 func_a()
17 {
18         echo "Function A"
19         sleep 1
20         func_b
21 }
22
23 func_a