From c275da6145d4d8e1a7e7ee8742663115c9dc0230 Mon Sep 17 00:00:00 2001 From: Lluciocc <114759545+Lluciocc@users.noreply.github.com> Date: Tue, 12 May 2026 18:32:36 +0200 Subject: [PATCH] Rename ptime to time --- src/userland/cli/{ptime.c => time.c} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename src/userland/cli/{ptime.c => time.c} (94%) diff --git a/src/userland/cli/ptime.c b/src/userland/cli/time.c similarity index 94% rename from src/userland/cli/ptime.c rename to src/userland/cli/time.c index 10a411e..9a8ffaa 100644 --- a/src/userland/cli/ptime.c +++ b/src/userland/cli/time.c @@ -40,12 +40,12 @@ static int ends_with_elf(const char *s) { } static void print_usage(void) { - printf("Usage: ptime [args...]\n"); + printf("Usage: time [args...]\n"); printf("\n"); printf("Examples:\n"); - printf(" ptime ls\n"); - printf(" ptime hexdump file.txt\n"); - printf(" ptime /bin/hexdump.elf file.txt\n"); + printf(" time ls\n"); + printf(" time hexdump file.txt\n"); + printf(" time /bin/hexdump.elf file.txt\n"); } // Read the system uptime in milliseconds by reading /proc/uptime and parsing the first number (seconds).