diff options
Diffstat (limited to 'Code/Shell/func_abc.sh')
-rwxr-xr-x | Code/Shell/func_abc.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Code/Shell/func_abc.sh b/Code/Shell/func_abc.sh new file mode 100755 index 000000000000..b44ce570ab93 --- /dev/null +++ b/Code/Shell/func_abc.sh @@ -0,0 +1,23 @@ +#!./sh + +func_c() +{ + echo "Function C" + sleep 1 +} + +func_b() +{ + echo "Function B" + sleep 1 + func_c +} + +func_a() +{ + echo "Function A" + sleep 1 + func_b +} + +func_a |