Files
thefuck/thefuck/rules/touch.py
T
2015-09-09 10:53:56 +03:00

14 lines
342 B
Python

import re
from thefuck.utils import for_app
from thefuck.shells import and_
@for_app('touch')
def match(command):
return 'No such file or directory' in command.stderr
def get_new_command(command):
path = re.findall(r"touch: cannot touch '(.+)/.+':", command.stderr)[0]
return and_(u'mkdir -p {}'.format(path), command.script)