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 | |
| # script is for the bulk renaming of files in the CURRENT DIRECTORY. | |
| # Best used when added to $PATH and called in the desired folder. | |
| # input: {string(up to 150 chars)} | |
| # output: All files will look like <string>_[10-99]_[0-9]_[0-9].<file-exentsion> | |
| # If any files follow the current convention, they will be skipped. | |
| import sys | |
| import os | |
| import argparse |