diff options
Diffstat (limited to 'cli/cli.py')
-rw-r--r-- | cli/cli.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -148,3 +148,8 @@ def touch(filename): os.rename(fullpath, new_fullpath) sys.stderr.write("%srenamed to %s%s\n" % (YELLOW, new_filename, RESET)) return 0 + + +def touch_cli(args): + """CLI wrapper around touch.""" + touch(args.filename) |