mirror of
https://github.com/nvbn/thefuck.git
synced 2025-11-20 16:56:04 +00:00
8 lines
229 B
Python
8 lines
229 B
Python
def match(command, settings):
|
|
return (command.script.startswith('grep')
|
|
and 'is a directory' in command.stderr.lower())
|
|
|
|
|
|
def get_new_command(command, settings):
|
|
return 'grep -r {}'.format(command.script[5:])
|