From 11593b1b2384ae1199dc1fbe743ddc5499d3ba7d Mon Sep 17 00:00:00 2001 From: Lluciocc <114759545+Lluciocc@users.noreply.github.com> Date: Tue, 12 May 2026 09:06:05 +0200 Subject: [PATCH] Add ptime command help message --- src/userland/cli/help.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/userland/cli/help.c b/src/userland/cli/help.c index 20ff62a..83ee46b 100644 --- a/src/userland/cli/help.c +++ b/src/userland/cli/help.c @@ -38,6 +38,7 @@ int main(int argc, char **argv) { printf("clear - Clear the screen\n"); printf("exit - Exit the terminal\n"); printf("net - Network tools\n"); + printf("ptime - Measure command execution time\n"); printf("\nHint: Use Ctrl+C to force quit any running application.\n"); return 0; }