/* Copyright 2018-2020, Barcelona Supercomputing Center (BSC), Spain Copyright 2015-2020, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). This software was partially supported by the ADA-FS project under the SPPEXA project funded by the DFG. SPDX-License-Identifier: MIT */ //#include #include #include #include #include void init_commands(CLI::App& app) { open_init(app); opendir_init(app); mkdir_init(app); read_init(app); readdir_init(app); rmdir_init(app); stat_init(app); write_init(app); } int main(int argc, char* argv[]) { CLI::App app{"GekkoFS I/O client"}; app.require_subcommand(1); app.get_formatter()->label("REQUIRED", ""); app.set_help_all_flag("--help-all", "Expand all help"); init_commands(app); CLI11_PARSE(app, argc, argv); return EXIT_SUCCESS; }