From f94384e572f0f83e63a1ae291d24f55f51394a45 Mon Sep 17 00:00:00 2001 From: Lluciocc <114759545+Lluciocc@users.noreply.github.com> Date: Mon, 11 May 2026 19:36:27 +0200 Subject: [PATCH] Add hexdump and ps command descriptions to help --- src/userland/cli/help.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/userland/cli/help.c b/src/userland/cli/help.c index d5f7903..490a1eb 100644 --- a/src/userland/cli/help.c +++ b/src/userland/cli/help.c @@ -25,6 +25,8 @@ int main(int argc, char **argv) { printf("date - Print current date and time\n"); printf("uptime - Print system uptime\n"); printf("meminfo - Print memory information\n"); + printf("hexdump - Display file contents in hexadecimal.\n"); + printf("ps [options] - List running processes\n") printf("lsblk - List block devices and partitions\n"); printf("cowsay [msg] - Fun cow says something\n"); printf("beep - Make a beep sound\n");