Bash-4.2 distribution sources and documentation

This commit is contained in:
Chet Ramey 2011-11-22 19:11:26 -05:00
commit 495aee441b
341 changed files with 108751 additions and 36060 deletions

39
tests/dbg-support3.sub Normal file
View file

@ -0,0 +1,39 @@
shopt -s extdebug
callstack(){
deep=${#BASH_ARGV[*]}
echo "deep $deep"
i=0
for ff in ${BASH_ARGV[@]}
do
echo "$i $ff"
i=$(($i+1))
done
}
f3()
{
echo $FUNCNAME: calling callstack
callstack
echo FUNCNAME stack: ${FUNCNAME[@]}
caller 0
echo $FUNCNAME: returning
}
f2()
{
echo $FUNCNAME: calling f3
f3 3 z
echo $FUNCNAME: return from f3
}
f1()
{
echo $FUNCNAME: calling f2
f2 2 y
echo $FUNCNAME: return from f2
}
echo main: calling f1
f1 1 x
echo main: f1 returns