From cc680e830f165c29756d563410330ec3ff6b0649 Mon Sep 17 00:00:00 2001 From: Jan Date: Fri, 15 May 2026 18:04:41 +0200 Subject: [PATCH] Refactor help.c for copyright and message clarity Updated copyright information and improved formatting of help messages. --- src/userland/cli/help.c | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/src/userland/cli/help.c b/src/userland/cli/help.c index ce09280..2db5f0b 100644 --- a/src/userland/cli/help.c +++ b/src/userland/cli/help.c @@ -1,17 +1,14 @@ -// Copyright (c) 2026 janevers (https://github.com/janevers-sys) +// Copyright (c) 2023-2026 Chris (boreddevnl) // This software is released under the GNU General Public License v3.0. See LICENSE file for details. // This header needs to maintain in any file it is present in, as per the GPL license terms. +// BOREDOS_APP_DESC: Show command and system help. #include #include int main(int argc, char **argv) { - (void)argc; - (void)argv; - + (void)argc; (void)argv; uint64_t help_color = sys_get_shell_config("help_color"); - if (help_color != 0) { - sys_set_text_color(help_color); - } + if (help_color != 0) sys_set_text_color(help_color); printf("BoredOS CLI Help\n"); printf("---------------------------\n"); @@ -41,12 +38,11 @@ int main(int argc, char **argv) { printf("clear - Clear the screen\n"); printf("exit - Exit the terminal\n"); printf("net - Network tools\n"); - printf("find - find files or folders\n"); - printf("rev - Reverse a string or file\n"); - printf("head - print lines from the top down\n"); - printf("tail - print lines from the bottom up\n"); - printf("time - Measure command execution time\n"); + printf("time - Measure command execution time\n"); + printf("find - find files or dol") + printf("rev - Reverse a string or file\n"); + printf("head - print lines from the top down\n"); + printf("tail - print lines from te bottom up\n"); printf("\nHint: Use Ctrl+C to force quit any running application.\n"); - return 0; }