From 72e6a8b6a786884f79ba1d0460191079a8d88e5a Mon Sep 17 00:00:00 2001 From: Jan Date: Fri, 15 May 2026 17:43:45 +0200 Subject: [PATCH] updated help with rev head tail and find --- src/userland/cli/help.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/userland/cli/help.c b/src/userland/cli/help.c index 20ff62a..ac96e97 100644 --- a/src/userland/cli/help.c +++ b/src/userland/cli/help.c @@ -1,7 +1,6 @@ -// Copyright (c) 2023-2026 Chris (boreddevnl) +// Copyright (c) 2026 janevers (https://github.com/janevers-sys) // 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 @@ -38,6 +37,10 @@ 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 te bottom up\n"); printf("\nHint: Use Ctrl+C to force quit any running application.\n"); return 0; }