Ethan Dalool
4a9051e617
With pathclass.glob_many, we can clean up and feel more confident about many programs that use pipeable to take glob patterns. Added return 0 to all programs that didn't have it, so we have consistent and explicit command line return values. Other linting and whitespace.
36 lines
893 B
Python
36 lines
893 B
Python
'''
|
|
Create the file, or update the last modified timestamp.
|
|
'''
|
|
import argparse
|
|
import os
|
|
import sys
|
|
|
|
from voussoirkit import pipeable
|
|
from voussoirkit import winglob
|
|
|
|
def touch_argparse(args):
|
|
patterns = pipeable.input_many(args.patterns, skip_blank=True)
|
|
for pattern in patterns:
|
|
filenames = winglob.glob(pattern)
|
|
|
|
if len(filenames) == 0 and not winglob.is_glob(pattern):
|
|
open(pattern, 'a').close()
|
|
pipeable.stdout(pattern)
|
|
|
|
for filename in filenames:
|
|
os.utime(filename)
|
|
pipeable.stdout(filename)
|
|
|
|
return 0
|
|
|
|
def main(argv):
|
|
parser = argparse.ArgumentParser(description=__doc__)
|
|
|
|
parser.add_argument('patterns', nargs='+')
|
|
parser.set_defaults(func=touch_argparse)
|
|
|
|
args = parser.parse_args(argv)
|
|
return args.func(args)
|
|
|
|
if __name__ == '__main__':
|
|
raise SystemExit(main(sys.argv[1:]))
|