I\'m going through Google\'s Python exercises and I need to be able to do this from the command line:
python babynames.py --summaryfile baby*.html
Cross-platform:
import glob if '*' in sys.argv[-1]: sys.argv[-1:] = glob.glob(sys.argv[-1]) continue...