SpecialistOff.NET / Вопросы / Статьи / Фрагменты кода / Резюме / Метки / Помощь / Файлы

Список вопросов Печать

Ошибка при запуске утилиты mytop


Метки: mysql mytop 

# mytop
Error in option spec: "long|!"

Ответы

RemiZOffAlex  Создано: 2016-09-29 20:32:36.611351  Обновлено: 2016-09-29 20:32:36.611351

Открыть файл /usr/bin/mytop найти и закомментировать строку:

GetOptions(
    "color!"              => \$config{color},
    "user|u=s"            => \$config{user},
    "pass|password|p=s"   => \$config{pass},
    "database|db|d=s"     => \$config{db},
    "host|h=s"            => \$config{host},
    "port|P=i"            => \$config{port},
    "socket|S=s"          => \$config{socket},
    "delay|s=i"           => \$config{delay},
    "batch|batchmode|b"   => \$config{batchmode},
    "header!"             => \$config{header},
    "idle|i"              => \$config{idle},
    "resolve|r"           => \$config{resolve},
    "prompt!"             => \$config{prompt},
    #"long|!"              => \$config{long_nums},
);

Возможно будут интересны и другие вопросы