I\'m just getting started with Python but already have found it much more productive than Bash shell scripting.
I\'m trying to write a Python script that will traverse e
Try it
import os for item in os.walk(".", "*"):
import os
for item in os.walk(".", "*"):
print item