I need to write a script that would print all files recursively in the current working directory that are bigger than 100kb.
I have experience in scripting in python and shell script and I know how to do it in a non-recursive function but I'm having trouble writing it recursively. I would be happy if anyone here could help with examples
So far I have searched the internet for answers and tried to write some scripts in python with the use of the command with open(dirpath) as cur_dir
but I can't figure out how to do it recursively