···2727 P("Usage: %s command [options] [file]\n", argv[0]);
2828 P("\n");
2929 P("Commands:\n");
3030+ P(" info - Print information about Monado and the system, for bug reporting.\n");
3031 P(" test - List found devices, for prober testing.\n");
3132 P(" probe - Just probe and then exit.\n");
3233 P(" lighthouse - Control the power of lighthouses [on|off].\n");
···4445 return cli_print_help(argc, argv);
4546 }
46474848+ if (strcmp(argv[1], "info") == 0) {
4949+ return cli_cmd_info(argc, argv);
5050+ }
4751 if (strcmp(argv[1], "test") == 0) {
4852 return cli_cmd_test(argc, argv);
4953 }