understanding recursion in depth code example
Example 1: recursionerror maximum recursion depth
sys.setrecursionlimit(1500)
Example 2: recursive grep recursion depth
find . -type f -maxdepth 2 -exec grep -l 'pattern' {} \;
sys.setrecursionlimit(1500)
find . -type f -maxdepth 2 -exec grep -l 'pattern' {} \;