mirror of
https://github.com/JamesonHuang/OpenWrt_Luci_Lua.git
synced 2024-11-23 13:50:11 +00:00
10 lines
160 B
Bash
Executable File
10 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
var=1
|
|
obj=40
|
|
while ((${var} < ${obj})); do
|
|
./testMemory.sh #call self
|
|
var=$((var+1))
|
|
echo "unlimited recursive call..."
|
|
done
|
|
|