Created
January 31, 2012 21:45
-
-
Save ralphbean/1713105 to your computer and use it in GitHub Desktop.
Scann0r
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" This is a python script for Paul! """ | |
import os | |
for base_dir, sub_dirs, files in os.walk(os.getcwd()): | |
for filename in files: | |
print base_dir + "/" + filename |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment