16 lines
347 B
Python
16 lines
347 B
Python
import re
|
|
from thefuck.specific.sudo import sudo_support
|
|
from thefuck.utils import for_app
|
|
|
|
|
|
@sudo_support
|
|
@for_app('cp')
|
|
def match(command):
|
|
output = command.output.lower()
|
|
return 'omitting directory' in output or 'is a directory' in output
|
|
|
|
|
|
@sudo_support
|
|
def get_new_command(command):
|
|
return re.sub(r'^cp', 'cp -a', command.script)
|