add test code about c & sh

This commit is contained in:
JamesonHuang
2015-07-29 20:31:49 +08:00
parent 85ff9191d3
commit 34fa6155d5
9 changed files with 203 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#!/bin/sh
var=1
obj=40
while ((${var} < ${obj})); do
./testMemory.sh #call self
var=$((var+1))
echo "unlimited recursive call..."
done