Home | History | Annotate | Download | only in git

Lines Matching refs:FILENAME

10   The special token [[FILENAME]] (or whatever you choose using the -t
19 %prog -x gyp,gypi "tools/format_xml.py [[FILENAME]]"
20 %prog -c "tools/sort-headers.py [[FILENAME]]"
66 filename = line.split()[0]
67 if filename:
68 filename = filename.rstrip()
69 ext = filename.rsplit('.')[-1]
71 filenames.append(filename)
77 run command with token replaced with the filename. If extensions is
82 for filename in filenames:
83 os.system(command.replace(token, filename))
94 parser.add_option('-t', '--token', default='[[FILENAME]]', dest='token',
96 'in your command (default [[FILENAME]]).')