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).