From 055173dba4a263acf10325a49eebf82915369ed2 Mon Sep 17 00:00:00 2001 From: "George V. Neville-Neil" Date: Sat, 12 May 2012 20:38:18 +0000 Subject: Add the remaining scripts from the DTraceToolkit, version 0.99, to the vendor tree. http://www.brendangregg.com/dtrace.html#DTraceToolkit --- Code/Shell/func_abc.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 Code/Shell/func_abc.sh (limited to 'Code/Shell/func_abc.sh') diff --git a/Code/Shell/func_abc.sh b/Code/Shell/func_abc.sh new file mode 100755 index 0000000000000..b44ce570ab939 --- /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 -- cgit v1.2.3