This file contains hidden or 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/python | |
| #Executes from the folder the script is called from. | |
| #Recursively scans dirs for predetermined file extensions | |
| import os | |
| from subprocess import call | |
| from time import strftime | |
| for root, dirnames, filenames in os.walk(os.path.dirname(os.path.realpath(__file__))): |
NewerOlder