keepassxc

Форк
0
/
Help.cpp 
42 строки · 1.3 Кб
1
/*
2
 *  Copyright (C) 2019 KeePassXC Team <team@keepassxc.org>
3
 *
4
 *  This program is free software: you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation, either version 2 or (at your option)
7
 *  version 3 of the License.
8
 *
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
13
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
#include "Help.h"
19

20
#include "Utils.h"
21

22
Help::Help()
23
{
24
    name = QString("help");
25
    description = QObject::tr("Display command help.");
26
}
27

28
int Help::execute(const QStringList& arguments)
29
{
30
    auto& out = Utils::STDOUT;
31
    QSharedPointer<Command> command;
32
    if (arguments.size() > 1 && (command = Commands::getCommand(arguments.at(1)))) {
33
        out << command->getHelpText();
34
    } else {
35
        out << "\n\n" << QObject::tr("Available commands:") << "\n";
36
        for (auto& cmd : Commands::getCommands()) {
37
            out << cmd->getDescriptionLine();
38
        }
39
    }
40
    out.flush();
41
    return EXIT_SUCCESS;
42
}
43

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.